body {
  background-color: #042453;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  padding: 0;
  margin: 0;
}

#honeycomb {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 50vh;
  background-image: url("honeycomb.webp");
  background-size: cover;
}

#world {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50vh;
  width: 100vw;
  background-image: url('world.webp');
  background-size: cover;
  opacity: 0.85;
}

#mohe {
  position: fixed;
  top: 15px;
  left: 15px;
  color: #fff;
  font-size: larger;
}

#content {
  display: flex;
  flex-direction: column;
  min-height: 99vh;
  justify-content: space-evenly;
  align-items: center;
}


#slogan {
  margin-top: 150px;
  color: #fff;
  text-align: center;
}


.hex-container {
  position: relative;
}

/* 2. The Background "Border/Glow" Layer */
.hex-border {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(150, 190, 230, 0.4) 0%, rgba(150, 190, 230, 0.1) 100%);
  clip-path: polygon(50% 0%, 90% 25%, 90% 75%, 50% 100%, 10% 75%, 10% 25%);
  z-index: 1;
}

/* 3. The Front "Glass" Layer */
.hex-glass {
  position: absolute;
  inset: 2px;
  background: rgba(10, 10, 10, 0.2);
  backdrop-filter: blur(8px);
  clip-path: polygon(50% 0%, 90% 25%, 90% 75%, 50% 100%, 10% 75%, 10% 25%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


em {
  color: #95D2E5;
  font-style: normal;
}


h1 {
  position: relative;
  color: #fff;
  opacity: 0.5;
  text-align: center;
  z-index: 100;
  font-weight: bold;
}

#hex-container-2 {
  z-index: 99;
  color: #fff;
  text-align: center;
}


@media (max-width: 1024px) {
  #slogan {
    font-size: 5vw;
  }

  #hex-container-1 {
    width: 20vw;
    height: 17vw;
    transform: translateX(20vw);
  }

  h1 {
    font-size: 10vw;
  }

  #hex-container-2 {
    margin-top: -22vw;
    margin-bottom: 100px;
    width: 90vw;
    height: 80vw;
    font-size: 2.5vw;
  }
}

@media (min-width: 1025px) {

  #slogan {
    margin-top: 150px;
    font-size: 50px;
  }

  #hex-container-1 {
    width: 250px;
    height: 225px;
    margin-top: 50px;
    transform: translateX(200px);
  }

  h1 {
    font-size: 100px;
  }

  #hex-container-2 {
    margin-top: -220px;
    margin-bottom: 100px;
    width: 1000px;
    height: 900px;
    font-size: 24px;
  }
}
