body{

    font-family: 'Poppins', sans-serif;

}

h2{
    color:red
}


/* .hero img{
    width: 100%
} */

.hero {

    /* turn on flexbox */
    display: flex;

    /* alignment on the main axis */
    justify-content: center;

    /* alignment on the cross axis */
    align-items: center;
    

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

    /* remove repeating on smaller image */
    background-repeat: no-repeat;
    
    width: 100%; 
    height: 100%;
}

nav{
display: flex;
justify-content: space-between;

}

.menu{
    display: flex;

}

li{
    /* spacing */
    /* 0 margin on the top and button, 15px left and right */
    margin: 0 0 0 25px;

    /* remove bullets */
    list-style-type: none;

}

.menu li a{
    color: #0a9e99;
    font-size: 1.15rem;

    /* remove underline */
    text-decoration: none;

}

.menu li a:hover {
    color: rgb(219, 24, 160);

}

.gallery{
    width: 100%;
    height: 50%;
    
}

.row {
    display: flex;
    width: 100%;
    height: 400px;
    margin: 1rem;
}

.thumbnail {
    width: 100%;
    height: 100%;

    /* background */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;


}

/*.gallery img{
    width: 100%;

}*/

#img1 {
    background-image: url('../images/gallery-image-1.jpg');
}

#img2 {
    background-image: url('../images/gallery-image-2.jpg');
}

#img3 {
    background-image: url('../images/gallery-image-3.jpg');
}

#img4 {
    background-image: url('../images/gallery-image-4.jpg');
}

#img5 {
    background-image: url('../images/gallery-image-5.jpg');
}

#img6 {
    background-image: url('../images/gallery-image-6.jpg');
}