body {
  margin: 0
}

a {
  line-height: 25px;
  border-bottom: 1px solid transparent;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

a:hover {
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

:root {
  --hex-w: 160px;
  --hex-h: calc(var(--hex-w) * 0.866);
  --gap: 12px;

  --bg: #0b0f17;
  --fg: #f5f5f7;
  --tile: #1b1f2a;
  --accent: #8a63ff;
}

.home {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
}

h1 {
  margin-bottom: 1em;
  font-size: 2rem;
  text-align: center;
}

.honeycomb-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: visible;
}

#honeycomb {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.hex {
  position: absolute;
  width: var(--hex-w);
  height: var(--hex-h);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: var(--tile);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hex:hover {
  transform: scale(1.05);
  z-index: 2;
}

/* Overlay content */
.hex a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #ffffe8;
  transition: background 0.3s ease;
}

.hex:hover a {
  background: rgba(0, 0, 0, 0);
  color: transparent;
}

.hidden-list {
  display: none;
}

.navbar {
  padding: 10px 0px;
  display: flex;
  justify-content: flex-start;
  z-index: 9999;
  font-family: 'Raleway', sans-serif;
}

.home .navbar {
  position: absolute;
}

.navbar-button {
  margin: 0 20px;
}

.centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  translate: 0 0;
}

.home {
  background-color: #282C35;
  color: #ffffe8;
  font-family: 'Raleway', sans-serif;
  height: 100vh;
}

.home:before {
  display: flex;
  width: 100%;
  height: 100vh;
  position: absolute;
  content: url(background.jpg);
  overflow: hidden;
}

.title {
  font-family: 'Great Vibes', cursive;
  font-size: 120px;
  text-align: center;
  white-space: nowrap;
  /* text-shadow: 20px 10px 10px #000; */
}

.soontm {
  font-size: 40px;
  padding: 20px 100px;
  margin-bottom: 100px;
  text-align: center;
}

.footer {}

.moon-lander .navbar {
  padding: 10px 0px;
  color: #FFFFFF;
}

@media screen and (max-width: 800px) {
  .home:before {
    display: block;
    opacity: 0.4;
  }

  .navbar {
    padding: 10px 10px;
  }

  .title {
    font-size: 80px;
  }

  .soontm {
    font-size: 20px;
    padding: 50px;
    margin-bottom: 0;
  }

  .honeycomb-wrap {
    position: unset;
    max-width: 600px;
  }
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 50px;
  }

  .honeycomb-wrap {
    max-width: 300px;
    margin: auto;
  }
}

@media (max-width: 800px) {
  :root {
    --hex-w: 120px;
  }
}
