html {
    --black: black;
    --yellow: #FCEE22;
    font-size: 25px;

    --gutter: 60px;
    --container-width: 1200px;
    --computed-gutter: max(var(--gutter), calc((100vw - var(--container-width)) / 2));

    overscroll-behavior: none;
}

body {
    background-color: var(--black);
    color: var(--yellow);
    font-family: "balboa", sans-serif;
    text-transform: uppercase;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sr-only {
    display: none;
    position: absolute;
}

.container {
    width: calc(100% - var(--gutter) * 2);
    max-width: var(--container-width);
    margin: 0 auto;
}
.row {
    display: flex;
    flex-direction: row;
}
.row .column {
    flex: 1;
}

main {
    flex: 1;
}

img {
    width: 100%;
    max-width: 100%;
}

.intro {
    font-size: 80px;
    font-weight: normal;
    line-height: 88%;
    text-wrap-style: balance;
}
h2 {
    font-size: 1rem;
}


#title-logo {
    aspect-ratio: 5 / 2;
    object-fit: cover;
    object-position: bottom;
}
.lowercase {
    text-transform: lowercase !important;
}
.previews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: max-content;
    gap: 10px;
}
.preview h4 {
    margin: 10px 0;
}

footer {
    background-color: var(--yellow);
    color: var(--black);
    margin-top: 2rem;
    padding-top: 2rem;
}
.tv-wrapper {
    /* width: 20rem; */
    /* flex: unset; */
    flex-basis: 20rem;
    display: grid;
    align-items: end;
}
footer p {
    text-wrap-style: balance;
}
#r-logo {
    width: 5rem;
    margin-top: 4rem;
}

@media screen and (max-width: 768px) {
    html {
        font-size: 20px;
        --gutter: 40px;
    }
    .intro {
        font-size: 45px;
    }
    .row {
        flex-direction: column;
    }
    #r-logo {
        margin-top: 2rem;
    }
}