body  {
  margin: 0;
  padding: 0;
  background-color: #DBDCD6;
  font-family: 'Montserrat', sans-serif; /* Montserrat as the primary font */
}

.header {
  background-color: transparent;
  color: #fff;
  padding: 0px;
  text-align: center;
}

.navigation {
  display: flex;
  justify-content: center;
  background-color: #DBDCD6;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.nav-item {
  margin: 0 20px;
  position: relative;
}

.nav-link {
  color: #677260; /* Changed the color to #818f79 */
  text-decoration: none;
  font-size: 26px;
  padding-bottom: 5px;
  position: relative;
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-link {
  transform: scale(3.1);
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #818f79;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 1s ease;
}

.nav-item:hover .nav-underline,
.nav-item.active .nav-underline {
  transform: scaleX(0.5);
}

.container {
  position: relative;
  height: calc(100vh - 50px);
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}

.image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: calc(100vh - 50px);
  width: auto;
  height: auto;
}
