.container {
    background-color: var(--color4);
    width: 300px;
    margin: 2% auto -90px;
    height: 150px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    display: block;
    text-align: center;
    padding: 10px;
    font-style: italic;
    overflow: visible !important;
}

.container h2 {
    text-align: center;
    padding-top: 10px;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 40px;
    text-decoration: underline;
    font-style: normal;
}

.container:nth-of-type(2n)  {
    position: relative;
    transform: translateX(200px);
}

.container:nth-of-type(2n + 1)  {
    float: right;
    transform: translateX(-200px);
}

.content {
    min-height: initial;
    height: auto;
}

.timeline {
    display: flex;
    flex-direction: column;
    max-width: 60%;
    margin: auto;
    margin-bottom: 8%;
}

@media screen and (max-width: 900px) {
    .container {
        width: 100%;
        height: 200px;
        transform: none !important;
        margin-top: 3%;
        margin-bottom: 3%;
        padding: 0;
    }

    .timeline {
        max-width: 80%;
    }
}

.schedule-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

.schedule-subtitle {
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    margin-top: 10px;
}

.schedule-date {
    margin-left: 10px;
}