html {
    background-color: #f6debf;
    width: 100%;
}

#titleSection {
    display: flex;
    width: 100%;
    video {
        width: 100%;
    }
}

#aboutSection {
    margin: auto;
    margin-top: 5rem;
    display: flex;
    justify-content: space-around;
    width: 80%;
    div {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        color: #32211c;
        font-family: Arial, Helvetica, sans-serif;
        padding-left: 5rem;
        h2 {
            font-size: 3rem;
        }
        p {
            font-size: 2rem;
            text-align: justify;
            font-weight: bold;
        }
    }
}

#videoSection {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    iframe {
        width: 80%;
        height: 53rem;
    }
}

@media only screen and (max-width: 1000px) {
    img {
        width: 95vw;
    }

    section {
        flex-direction: column;
    }

    #aboutSection div {
        padding: 0;
        h2 {
            font-size: 2rem;
        }
        p {
            font-size: 1rem;
        }
    }

    #aboutSection, #videoSection {
        margin: 0;
        margin-top: 1rem;
        width: 95vw;
    }

    main {
        margin-bottom: 2rem;
    }

    h2 {
        text-align: center;
    }

    #videoSection iframe {
        width: 100vw;
        height: auto;
    }
}