*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --dark-color: #000;
  --pink-color: #ff69b4;
  --pink-glow: #ff1493;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  background-color: var(--dark-color);
  overflow: hidden;
}

.night {
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  filter: blur(0.1vmin);
  background-image: radial-gradient(ellipse at top, transparent 0%, var(--dark-color)), radial-gradient(ellipse at bottom, var(--dark-color), rgba(145, 233, 255, 0.2)), repeating-linear-gradient(220deg, rgb(0, 0, 0) 0px, rgb(0, 0, 0) 19px, transparent 19px, transparent 22px), repeating-linear-gradient(189deg, rgb(0, 0, 0) 0px, rgb(0, 0, 0) 19px, transparent 19px, transparent 22px), repeating-linear-gradient(148deg, rgb(0, 0, 0) 0px, rgb(0, 0, 0) 19px, transparent 19px, transparent 22px), linear-gradient(90deg, rgb(255, 255, 250), rgb(240, 240, 240));
  z-index: -1;
}

.title {
  color: #ffffff;
  font-family: sans-serif;
  font-size: 50px;
  text-shadow: 0 0 20px var(--pink-color), 0 0 40px var(--pink-glow);
  text-align: center;
  margin-bottom: 2rem;
  z-index: 10;
}

@media (min-width: 500px) {
  .title {
    font-size: 80px;
    letter-spacing: 5px;
  }
}

.subtitle-container {
  text-align: center;
  margin-bottom: 3rem;
  z-index: 10;
}

.subtitle {
  color: white;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1rem;
  opacity: 0;
  animation: typing 1s ease forwards;
  animation-delay: 3s;
  padding: 0 20px;
}

@keyframes typing {
  from {
    opacity: 5%;
  }

  to {
    opacity: 1;
  }
}

.title span {
  opacity: 5%;
  animation: typing 1s ease forwards;
  animation-delay: var(--delay);
}

.button-container {
  z-index: 10;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: none;
  background: white;
  color: black !important;
  padding: 10px 30px;
  border-radius: 4px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--pink-color);
  color: white !important;
  box-shadow: 0 0 20px var(--pink-color);
  transform: translateY(-2px);
}

.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: #666;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  z-index: 10;
}

.footer a {
  color: #888;
  text-decoration: none;
}

.footer a:hover {
  color: var(--pink-color);
}