html {
    background-color: #2C2524;
    h1, .aboutLink {
        color: white;
    }
    h2, p {
        color: white;
        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: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    img {
        width: 40vw;
    }
}

#imagesSection1 {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    width: 95vw;
    section, video {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    section {
        width: 50vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        img {
            width: 90%;
            margin: 2rem;
        }
    }
    video {
        width: 35vw;
    }
}

#imagesSection2 {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    width: 95vw;
    section {
        margin-left: 1rem;
        margin-right: 1rem;
        width: 30vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        img, video {
            width: 90%;
            margin: 2rem;
        }
    }
}

#imagesSection2>img {
    margin-left: 1rem;
    margin-right: 1rem;
    width: 60vw;
}

main>section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

#videoSection {
    margin-left: auto;
    margin-right: auto;
    width: 95vw;
    display: flex;
    justify-content: center;
    video {
        width: 95%;
    }
}

@media only screen and (max-width: 1000px) {
    img {
        width: 95vw;
    }

    #startSection, #imagesSection1, #videoSection {
        width: 95vw;
        flex-wrap: wrap;
        #text1, #text2 {
            margin: 0;
            h2 {
                font-size: 2rem;
            }
            p {
                font-size: 1rem;
            }
        }
        iframe, video, img {
            width: 100%;
            height: auto;
        }
    }
}