html {
    background-image: linear-gradient(#09102a, #727794);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
}

header .aboutLink, header h1 {
        color: white;
}

section {
    display: flex;
    justify-content: space-around;
    margin-bottom: 5rem;
    div {
        width: 40vw;
        font-family: Arial, Helvetica, sans-serif;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        h2 {
            font-size: 3rem;
            font-weight: bolder;
            text-align: center;
        }
        p {
            font-size: 2rem;
            font-weight: bold;
            text-align: justify;
        }

    }
}

@media only screen and (max-width: 1000px) {
    img {
        width: 95vw;
    }
    section {
        flex-direction: column;
        div {
            width: 95vw;
            h2 {
                font-size: 2rem;
            }
            p {
                font-size: 1rem;
            }
        }
    }
}
