

html, body {
    margin: 0;
    padding: 0;
}


body {
    font-family: 'Poppins', sans-serif;
}

/* Navigation*/
nav {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;

}

.menu {
    display: flex;
}

li {
    list-style-type: none;
    margin: 0 10px;
}
a {
    /* get rid of underline*/
    text-decoration: none;
    font-size: 1.125rem;
    color: rgb(181, 52, 52);
}
a:hover {
    color: rgb(191, 0, 255);
}

.hero{
    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url('../images/hero-1.jpg');
    background-size: cover;
    background-position: top;

    width: 100%;
    height: 100%;
}

h1 {
    font-size: 5rem;
}

/* Image gallery*/

.gallery {
    width: 100%;
}

.row{
    display: flex;
    justify-content: center;

    width: 100%;
    height: 400px;
}

.thumbnail {
    width: 30%;
    margin: 4px;

    /* background */
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    
}
/* images */
#img1 {
    background-image: url(../images/img1.jpeg);
}

#img2 {
    background-image: url(../images/img2.jpeg);
}

#img3 {
    background-image: url(../images/img3.jpeg);
}

#img4 {
    background-image: url(../images/img4.jpeg);
}

#img5 {
    background-image: url(../images/img5.jpeg);
}

#img6 {
    background-image: url(../images/img6.jpeg);
}

#img7 {
    background-image: url(../images/img7.jpeg);
}

#img8 {
    background-image: url(../images/img8.jpeg);
}

#img9 {
    background-image: url(../images/img9.jpeg);
}

#img10 {
    background-image: url(../images/img10.jpeg);
}

#img11 {
    background-image: url(../images/img11.jpeg);
}

#img12 {
    background-image: url(../images/img12.jpeg);
}


h1 {
    color: rgb(189, 71, 17);
    text-align: center;
}

/* footer*/
footer {
    display: flex;
    justify-content: center;

    background-color: rgb(165, 231, 231);
}