/* CS Reset */
html, body {
    margin: 0;
    padding: 0;

    /* animation */
    scroll-behavior: smooth;
}

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

/* navigation bar */
.navigation {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

/* another way to target a specific element */
.links ul {
    display: flex;
    list-style: none;
    padding: 0 2rem;
    
}
.h2{
    text-align: center;
}

.links ul li {
    margin: 0 1rem;
    align-items: center;
}

.links ul li a {
    color: rgb(128, 73, 0);
    text-decoration: none;
}

/* hero image */
.header {
    width: 100%;
    height: 70vh;
    

    /* use flexbox */
    display: flex;
    justify-content: center;
    align-items: center;

    /* set background image */
    background-image: url('../Images/main\ image.jpeg');
    background-size: cover;
    background-position: center;
}

h1{
    font-size: 80px;
    color: white;
}

/* gallery */
.gallery {
    width: 100%;
    height: 100vh;
}

.row {
    display: flex;
    width: 100%;
    height: 40%;

    /* vertical margin */
    margin: 2rem 0;
}

/* boxes */
.box {
    width: 100%;
    height: 100%;
    background: lightgray;
    margin: 1rem;

    /* round corners */
    border-radius: 8px;

    /* move text */
    display: flex;
    justify-content: center;
    align-items: end;

    color: #fff;

    background-size: cover;
}

#box1 {
    background-image: url('../Images/1.jpg');
}

#box2 {
    background-image: url('../Images/2.jpg');
}

#box3 {
    background-image: url('../Images/3.jpg');
}

#box4 {
    background-image: url('../Images/4.jpg');
}

#box5 {
    background-image: url('../Images/5.jpg');
}

#box6 {
    background-image: url('../Images/6.jpg');
}

#box7 {
    background-image: url('../Images/7.jpg');
}

#box8 {
    background-image: url('../Images/8.jpg');
}

#box9 {
    background-image: url('../Images/9.jpg');
}

#box10 {
    background-image: url('../Images/10.jpg');
}

#box11 {
    background-image: url('../Images/11.jpg');
}

#box12 {
    background-image: url('../Images/12.jpg');
}