@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: 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: 3em;
  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;
}

.hover {
  cursor: pointer;
}
/* 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%;
}