* {
  margin: 0;
  box-sizing: border-box;
}

nav {
  display: flex;
  justify-content: center;
  height: 100px;
  background-color: #26150e;
  color: white;
}

.center-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px; /* max width, but can shrink */
  width: 100%; /* take full screen width on small screens */
  padding: 0 20px; /* smaller padding so it fits better */
}

#nav-logo img {
  height: 50px;
  width: 100%;
}

.nav-links {
  width: 33%;
  display: flex;
  gap: 20px;
  font-size: 11px;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.nav-links a {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: white;
}

nav a:visited {
  color: inherit;
}

nav a:hover {
  color: #a67a61;
}

nav a:active {
  color: #a67a61;
}

#nav-address {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 33%;
}

footer {
  color: white;
  background-color: #26150e;
  height: 100px;
  display: flex;
  justify-content: center;
}
#footer-centerbox {
  display: flex;
  align-items: center;
  width: 1200px;
}

#footer-address {
  font-size: 12px;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.maincontainer {
  background-color: #ccbeb1;
}

.maincontainer h1 {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  color: #26150e;
}

.subcontainer {
  width: 100%;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px;
  overflow-x: hidden;
}

.img {
  width: 100%;
  min-height: 275px;
  background-position: center;
  background-size: cover;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.7));
}

.img:nth-child(1) {
  background-image: url(../images/photos/map_60.jpg);
  grid-column: 1 / 4; /* use all 3 columns */
  grid-row: 1 / 4; /* use 2 rows */
}
.img:nth-child(2) {
  background-image: url(../images/photos/cafe-photo.jpg);
}
.img:nth-child(3) {
  background-image: url(../images/photos/river-dock.jpg);
}
.img:nth-child(4) {
  background-image: url(../images/photos/pool-photo.jpg);
}
.img:nth-child(5) {
  background-image: url(../images/photos/klondike-signflags.jpg);
}
.img:nth-child(6) {
  background-image: url(../images/photos/klondike-sunset-photo.jpg);
}
.img:nth-child(7) {
  background-image: url(../images/photos/klondikelodgeinside.jpg);
}
.img:nth-child(8) {
  background-image: url(../images/photos/lodge-photo.jpg);
}
.img:nth-child(9) {
  background-image: url(../images/photos/poolphoto3.jpg);
}
.img:nth-child(10) {
  background-image: url(../images/photos/pool.jpg);
}

@media (max-width: 1200px) {
  .container {
    width: 100%;
  }

  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    overflow-x: hidden;
  }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  gap: 20px;
}

body {
  background-color: #ccbeb1;
}

h1 {
  font-size: 36px;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #26150e;
}
