.timeline {
    position: relative;
    align-self: left;
    padding: 0px 0px 20px 20px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--secondary);
    top: 0;
    bottom: 0;
    left: 0;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--secondary);
    border-radius: 50%;
    top: 3px;
    left: 0;
    margin-left: -26px;
}

.play-container {
    margin-left: 0.5em;
    width: 100%;
}

.play-info-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.play-name-container {
    text-align: center;
    width: 100%;
    height: fit-content;
    text-decoration: underline;
    padding: 0;
}

.play-image {
    width: 100%;
    height: 100%;
    max-width: 500px;
}

@media screen and (min-width: 768px) {
    .play-date {
        font-size: x-large;
    }

    .play-name-container {
        padding: 70px;
    }

    .play-info-container {
        flex-direction: row;
    }

    .play-info-container-test {
        flex-direction: row;
    }

    .play-image {
        margin-left: 40px;
        max-width: 500px;
        overflow-x: hidden;
    }
}