section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

#startSection {
    flex-wrap: nowrap;
    font-family: Arial, Helvetica, sans-serif;
    color: #32211c;
    div {
        width: 40vw;
        h2 {
            text-align: center;
            font-size: 3rem;
            font-weight: bolder;
        }
        p {
            text-align: justify;
            font-size: 2rem;
            font-weight: bold;
        }
    }
}

@media only screen and (max-width: 1000px) {
    img {
        width: 95vw;
    }

    #startSection {
        flex-wrap: wrap;
        div {
            width: 95vw;
            h2 {
                font-size: 2rem;
            }
            p {
                font-size: 1rem;
            }
        }
    }
}

footer {
    background-color: #DADADA;
}