html, body {
    margin: 0;
    padding: 0;

    /* animation */
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
}

h3 {
    font-size: 3rem;
}

h4 {
    font-size: 1rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 0rem 2rem;
    align-items: center;
    margin: 0 1rem;
}

.menu ul {
    display: flex;
    list-style-type: none;
}

.menu ul li {
    margin: 0 1rem;
}

.menu ul li a {
    color: teal;
    text-decoration: none;
}

/* hero img */
.header {
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:azure;
    background-size: cover;
    background-position: center;
    text-align: center;
}

h1 {
    font-size: 80px;
    color: turquoise;
}

.gallery{
    width: 100%;
    height: auto;
    margin-bottom: 5rem;

}

h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.row {
    display: flex;
    width: 100%;
    height: 40%;
    margin: 1rem 0;
}

.box {
    width: 100%;
    height: 100%;
    background-color: lightcyan;
    margin: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: end;
    background-size: cover;
    color: whitesmoke;
}

#box1 {
    background-image: url('../Images-resized/1.jpg');
}

#box2 {
    background-image: url('../Images-resized/2.jpg');
}

#box3 {
    background-image: url('../Images-resized/3.jpg');
}

#box4 {
    background-image: url('../Images-resized/4.jpg');
}

#box5 {
    background-image: url('../Images-resized/5.jpg');
}

#box6 {
    background-image: url('../Images-resized/6.jpg');
}

#box7 {
    background-image: url('../Images-resized/7.jpg');
}

#box8 {
    background-image: url('../Images-resized/8.jpg');
}

#box9 {
    background-image: url('../Images-resized/9.jpg');
}

#box10 {
    background-image: url('../Images-resized/10.jpg');
}

#box11 {
    background-image: url('../Images-resized/11.jpg');
}

#box12 {
    background-image: url('../Images-resized/12.jpg');
}

footer {
    width: 100%;
    height: 10rem;
    background-color: black;
    color: white;
    justify-content: center;
    align-content: center;
    text-align: center;
}