html {
    background-color: #1c0f0e;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

h2 {
    font-weight: bolder;
    font-size: 3rem;
    text-align: center;
}

p {
    text-align: justify;
    font-weight: bold;
    font-size: 2rem;
}

header .aboutLink {
    color: white;
}

#section1 .images {
    width: 60vw;
    height: 40vw;
}

.images {
    background-size: cover;
    margin: 4rem;
}

#section2 .images, #section3 .images {
    width: 30vw;
    height: 20vw;
}

#section2 .images {
    margin-left: 0;
}

#section4 .images {
    width: 30vw;
    height: 42vw;
}

#section2>div{
    width: 30vw;
}

section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    img {
        margin: 6rem;
    }
}

#section2, #section4 {
    flex-wrap: wrap-reverse;
}

@media only screen and (max-width: 1000px) {
    #section1, #section2, #section3 { 
        .images {
            margin: 0;
            margin-top: 0.5rem;
            margin-bottom: 0.5rem;
            width: 95vw;
            height: 62vw;
        }
    }

    #section4 { 
        .images {
            margin: 0;
            margin-top: 0.5rem;
            margin-bottom: 0.5rem;
            width: 95vw;
            height: 134vw;
        }
    }

    #section2>div {
        width: 95vw;
    }

    section img {
        margin: 0;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    h2 {
        font-weight: bolder;
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
}