
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Anton', sans-serif;
  background: url('../image/8TZE.gif') center/cover no-repeat fixed;
  color: white;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 3.5rem;
  text-shadow: 0 0 25px #5007c5, 0 0 50px #5007c5;
  animation: auraGlow 2s infinite alternate, fadeInDown 2s ease-out;
}

.enter-btn {
  margin-top: 50px;
  padding: 20px 50px;
  font-size: 1.5rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(45deg, #5007c5, #5007c5);
  color: white;
  cursor: pointer;
  box-shadow: 0 0 20px #5007c5;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: auraGlow 2s infinite alternate, fadeInUp 3s ease-out;
}

.enter-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px #5007c5;
}


/* les frames ont été faites a l'aide de ChatGPT*/
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes auraGlow {
  0% {
    text-shadow: 0 0 10px #5007c5, 0 0 20px #5007c5;
    
  }
  100% {
    text-shadow: 0 0 25px #5007c5, 0 0 50px #5007c5;
    
  }
}

audio {
  display: none;
}

@media (max-width: 914px) {
  h1{
    font-size: 2rem;
  }
}