body{
    gap:0;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 6rem;
    position: relative;
    z-index: 0;
    margin:0;
}

.content-container iframe {
    margin: 2rem;
    width: calc(50vw - 4rem);
    height: calc((50vw - 4rem) * 0.6);
}



.primary {
    background: var(--primary-bg);
}

.primary::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.2;
    background-image: url('../assets/bg-tileable.webp');
    background-size: 30vw;
}

.secondary {
    background: var(--accent-3);
}

.tertiary {
    background-color: var(--accent-3);
}



.tertiary::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.2;
    background-image: url('../assets/bg-tileable.webp');
    background-size: 30vw;
}

.card {
    box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.15);
}

p {
    font-family: 'Dream Avenue';
    color: var(--secondary-color);
    text-align: center;
    font-size: calc(var(--font-size-regular));
    margin: 0;
    margin-bottom: calc(var(--font-size-regular)*0.5);
}

.strip-container {
    background: var(--primary-bg);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
    top: -10vh;
}

.timeline-container {

    margin-left: 2rem;
    margin-right: 2rem;
    margin-bottom: 8rem;

    padding-left: 4rem;
    padding-right: 4rem;
}

.timeline-container img {
    width: 100%;
}

@media (orientation: portrait),
(max-width: 768px) {
    .content-container iframe {
        width: 100vw;
        height: 100vw;
    }

    .timeline-container {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;

        padding-left: 0;
        padding-right: 0;
    }
}