html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Orbitron', sans-serif;
  background-color: #000;
  color: #f0f8ff;
}

.register {
  position: relative;
  right:5em;
  top:5em
}

.snap-section {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  max-width: 50em;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.container-alt {
  text-align: center;
  width: 30em;
  height: 25rem;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
  top: -15.5em
}

header h1 {
  font-size: 4em;
  color: #0ff;
  text-shadow: 0 0 20px #0ff;
  position: relative;
  transition: all 0.4s ease;
  animation: pulseGlow 3s infinite ease-in-out;
  cursor: default;
}

@keyframes pulseGlow {
	 0%, 100% {
    text-shadow: 0 0 20px #0ff;
	}
	 50% {
    text-shadow: 0 0 35px #00eaff;
	}
}

header h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #0ff, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

header h1:hover::after {
  transform: scaleX(1);
}

header h1:hover {
  color: #9ff;
  text-shadow: 0 0 30px #9ff;
  transform: scale(1.02);
}

header p {
  font-size: 1.2em;
  color: #9beff5;
  margin-top: 10px;
}

button {
  margin-top: 20px;
  padding: 12px 28px;
  font-size: 1.2em;
  border: none;
  border-radius: 8px;
  background-color: #0ff;
  color: #000;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
}

button:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 1);
  transform: scale(1.05);
}

.features-box {
  margin-top: 20px;
  padding: 30px;
  border: 2px solid #0ff;
  border-radius: 12px;
  background-color: rgba(20, 20, 20, 0.6);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.feature-item {
  font-size: 1.1em;
  margin: 16px 0;
  padding: 10px 0;
  position: relative;
  transition: all 0.4s ease;
  transform-origin: center;
  color: #f0f8ff;
  cursor: pointer;
}

.feature-item:hover {
  color: #0ff;
  transform: scale(1.03);
  text-shadow: 0 0 10px rgba(0,255,255,0.5);
}

.feature-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, #0ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover::after {
  opacity: 1;
}

.options {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2em;
}

@media screen and (max-width: 1596px) {
  .fixThisShit {
    margin-top:5em;
  }

  h2 {
    position: relative;
    right:2em
  }

  .features-box {
    width: 18em;
  }

  .container-alt {
    margin-top:0px;
    gap:0px;
    flex: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    left:4em;
  }

  .options {
    display:flex;
    margin-top:120em;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap:2em;
    height:auto;
  }

  html, body {
    overflow-y: visible;
  }
}