h1 {
    font-family: "Playwrite BR", cursive;
    color: rgb(0, 0, 0);

}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* navigation bar*/
.navigation {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.logo h1 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

.links ul {
    display: flex;
    padding: 0 2rem;
    list-style-type: none;
}

.links ul li {
    margin: 0 1rem;
}

.links ul li a {
    text-decoration: none;
    color: black;
}

.links ul li a:hover {
    color: rgb(255, 255, 255);
    background: rgb(3, 255, 108);
    padding: 0.5rem;
    border-radius: 5px;
}

/* gallery section */
.gallery {
    width: 100%;
    height: 100vh;
}


h2 {
    text-align: center;
}

.row {
    display: flex;
    width: 100%;
    height: 40%;
    margin: 1rem 0;
}

/* base styling for all boxes */
.box {
    background: lightgrey;
    /* referencing the width and height of the row */
    width: 100%;
    height: 100%;
    margin: 1rem;
    border-radius: 10px;

    /* apply background image sizing */
    background-size: cover;
    background-position: center;

    /* apply flex box to realign the text */
    display: flex;
    justify-content: center;
    align-items: end;
}

/* images */
#box-1 {
   background-image: url('../images/rj-1.jpg');
}

#box-2 {
   background-image: url('../images/rj-2.jpg');
}

#box-3 {
   background-image: url('../images/rj-3.jpg');
}

#box-4 {
   background-image: url('../images/rj-4.jpg');
}

#box-5 {
   background-image: url('../images/rj-5.jpg');
}

#box-6 {
   background-image: url('../images/rj-6.jpg');
}

#box-7 {
   background-image: url('../images/rj-7.jpg');
}

#box-8 {
   background-image: url('../images/rj-8.jpg');
}

#box-9 {
   background-image: url('../images/rj-9.jpg');
}

#box-10 {
   background-image: url('../images/rj-10.jpg');
}

#box-11 {
   background-image: url('../images/rj-11.jpg');
}

#box-12 {
   background-image: url('../images/rj-12.jpg');
}

/* footer section */
footer {
    width: 100%;
    min-height: 5%;
    background-color: rgb(3, 255, 108);
    display: flex;
    justify-content: center;
}

footer p {
    color: #000000;
}