/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f1ed;
    color: #6f8c7b;
}

/* HEADER */
header {
    background-color: #b79b84;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1 {
    font-size: 48px;
    color: var(--Cool-Green-Web, #748A80);
-webkit-text-stroke-width: 1.5px;
-webkit-text-stroke-color: #000;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.96px;;
}

/* NAV */
nav a {
    text-decoration: none;
    color: #f5f5f5;
    margin-left: 25px;
    font-size: 20px;
    font-weight: bold;
}

nav a:hover {
    color: #2e2e2e;
}

/* GALLERY SECTION */
/* MAIN */
main {
    padding: 60px 80px;
}

/* PAGE TITLE */
main h1 {
  font-size: 60px;
    margin-bottom: 50px;
    color: #748A80;
-webkit-text-stroke-width: 1.5px;
-webkit-text-stroke-color: #000;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.96px;
}

/* GALLERY CONTAINER */
.gallery-container {
    position: relative;
    height: 500px;
}

/* IMAGES */
.photo {
    position: absolute;
    width: 150px;
    border-radius: 5px;
}

/* INDIVIDUAL POSITIONS (this creates the staggered layout) */
.photo1 {
    left: 0;
    top: 100px;
    width: 343px;
    height: 457px;
    aspect-ratio: 343/457;
    padding-right: 50px;
}

.photo2 {
    left: 260px;
    top: 0;
    width: 350px;
    height: 485px;
    aspect-ratio: 70/97;
}

.photo3 {
    left: 450px;
    top: 150px;
    width: 220px;
}

.photo4 {
    left: 700px;
    top: 0;
    width: 220px;
}

.photo5 {
    right: 0;
    top: 100px;
    width: 220px;
}
