.hero.slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.slider-wrapper {
  width: 100vw;
  height: 100%;
}
.slider-container {
  display: flex;
  width: 800vw;
  height: 100%;
  animation: slideShow 64s infinite;
}
.slide {
  flex: 0 0 100vw;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(1, 8, 33, 0.712);
  padding: 1000% 50%;
  height: 100vh;
  width: 100vw;
  /* border-radius: 12px; */
  /* max-width: 600px; */

  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.overlay-content {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  width: 23rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.55);
  padding: 1rem;
  border-radius: 12px;
}
.overlay p {
  font-size: 1.2rem;
  top: 52%;
}
.overlay h1 {
  font-weight: bold;
  top: 45%;
}

@keyframes slideShow {
  0%,
  10% {
    transform: translateX(0vw);
  }
  12.5%,
  22.5% {
    transform: translateX(-100vw);
  }
  25%,
  35% {
    transform: translateX(-200vw);
  }
  37.5%,
  47.5% {
    transform: translateX(-300vw);
  }
  50%,
  60% {
    transform: translateX(-400vw);
  }
  62.5%,
  72.5% {
    transform: translateX(-500vw);
  }
  75%,
  85% {
    transform: translateX(-600vw);
  }
  87.5%,
  97.5% {
    transform: translateX(-700vw);
  }
  100% {
    transform: translateX(0vw);
  }
}

main.container.colorful {
  background-color: #f5f8ff;
  padding: 2rem;
}
.section {
  margin-bottom: 2rem;
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
table th,
table td {
  padding: 0.75rem;
  border: 1px solid #ccc;
  text-align: left;
}
table th {
  background: #e3e9ff;
}
ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

/* Desktop Navigation */
@media (min-width: 1200px) {

}