/* Style pour l'index */
body {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: radial-gradient(circle, #001f3f, #000000);
  font-family: 'Orbitron', sans-serif; /* Typographie futuriste */
  overflow: hidden;
}

/* Conteneur d'animation */
.animation-container {
  text-align: center;
}

/* Texte animé */
.animated-text {
  font-size: 3rem;
  color: #00d4ff; /* Bleu lumineux pour contraste futuriste */
  text-transform: uppercase;
  animation: fade-in-out 3s ease-in-out infinite;
  letter-spacing: 3px; /* Espacement des lettres pour un effet futuriste */
}

/* Animation de fondu */
@keyframes fade-in-out {
  0% {
      opacity: 0;
      transform: scale(0.8);
  }
  50% {
      opacity: 1;
      transform: scale(1);
  }
  100% {
      opacity: 0;
      transform: scale(1.2);
  }
}


.enter-button:hover {
  background: #00d4ff;
  color: #001f3f;
}
