html {
    background-color: #0b260c;
}

header .aboutLink, header h1 {
    color: white;
}

main {
    margin-top: 2rem;
}

section {
    margin-bottom: 5rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    #aside {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 786px;
        p, h2 {
            color: white;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 2.2rem;
            text-align: justify;
        }
        div {
            display: flex;
            justify-content: space-between;
            width: 100%;
        }
    }
}

@media only screen and (max-width: 1000px) {
    img {
        width: 95vw;
    }

    section #aside {
        width: 95vw;
        p, h2 {
            font-size: 1rem;
        }
    }
}