@font-face {
  font-family: 'HostGrotesk Regular';
  src: url('HostGrotesk-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'HostGrotesk Bold';
  src: url('HostGrotesk-Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 40px;
  padding-top: 120px;
  text-align: center;
  font-family: 'HostGrotesk Regular', Arial, sans-serif;
  background-color: #FFF8E3;
  color: #1070bf;
}

h1 {
  font-family: 'HostGrotesk Bold', Arial, sans-serif;
  font-size: 4em;
  font-weight: bold;
  margin-bottom: 10px;
}

h2 {
  font-family: 'HostGrotesk Bold', Arial, sans-serif;
  font-size: 1.6em;
  font-weight: bold;
  margin-top: 20px;
}

p {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 1.2em;
  color: #1070bf;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Navigation bar at top */
.sidebar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 15px;
  z-index: 100;
  background-color: rgba(255, 248, 227, 0.95);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation items */
.nav-item {
  width: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-item:hover {
  transform: scale(1.1);
  filter: brightness(1.15);
}

.nav-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.nav-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.hover {
  cursor: pointer;
}

/* Image containers - spread them out */
.image-container-1,
.image-container-2,
.image-container-3,
.image-container-4,
.image-container-5 {
  margin: 60px auto;
  max-width: 250px; /* Smaller images */
}

/* All images in these containers */
.image-container-1 img,
.image-container-2 img,
.image-container-3 img,
.image-container-4 img,
.image-container-5 img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.5s ease-in, transform 0.5s ease-in;
  cursor: pointer;
}

/* Hover effect - brighten images */
.image-container-1 img:hover,
.image-container-2 img:hover,
.image-container-3 img:hover,
.image-container-4 img:hover,
.image-container-5 img:hover {
  filter: brightness(1.3);
  transform: scale(1.05);
}