html {
    background-color: #1c1c2d;
    h1, .aboutLink {
        color: white;
    }
    h2, p {
        color: #eebd50;
        font-family: Arial, Helvetica, sans-serif;
    }
    h2 {
        font-size: 3rem;
        margin-top: 0;
    }
    p {
        font-size: 2rem;
        font-weight: bold;
        text-align: justify;
    }
}

#startSection {
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    #text1 {
        margin-left: 7rem;
    }
}

#posterSection {
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    #text2 {
        margin-right: 7rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

#videoSection {
    display: flex;
    justify-content: center;
    iframe {
        width: 80%;
        height: 80vh;
    }
}


main section {
    margin-top: 3rem;
}

@media only screen and (max-width: 1000px) {
    img {
        width: 95vw;
    }

    #startSection, #posterSection, #videoSection {
        width: 95vw;
        flex-wrap: wrap;
        #text1, #text2 {
            margin: 0;
            h2 {
                font-size: 2rem;
            }
            p {
                font-size: 1rem;
            }
        }
        iframe {
            width: 100%;
            height: auto;
        }
    }
}