h1 {
    color: white;
    padding: 110px;
    font-size: 4.5vw;
    text-align: center;
}

body {
    background-color: white;
    color: white;
    font-family: "Avenir Next"
}

p {
    color: black;
}

img {
    width: 100%;
}

header {
    background-color: white;
    background-image: url(../img/header.jpeg);
    background-size: 100%;
    height: 41vw;
    background-repeat: no-repeat;
}


main {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 3em;
    padding: 2em;
}

h2 {
    text-align: center;
    color: black;
    font-size: 2.5em;
}

.round {
    border-radius: 60%;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
    margin-left: auto;
    margin-right: auto;
}


.gallery img {
    width: 100%;
    height: 100%;

}


@media (min-width: 600px) {
    .gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        padding-bottom: 1vw;

    }
}

@media (min-width: 800px) {
    .gallery {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    h1 {
        font-size: 5em;
    }
}

section .h2 {
    text-align: center;
}


footer {
    background-color: black;
    padding: 10%;
    text-align: center;
    background-size: 100%;

}

footer h4 {

    background-color: black;
    color: white;
    font-size: 4vw;
    text-decoration: none;
}
