@font-face {
  font-family: SuperSalade;
  src: url(font/Super\ Salad.ttf);
}

@font-face {
  font-family: Display;
  src: url(font/HelveticaNowDisplay-Regular.ttf);
}

body {
  margin: 0;
  background-color: black;
  overflow-y: hidden;
}

#title {
  font-family: SuperSalade;
  font-size: 150px;
  color: white;
  font-weight: lighter;
  animation: neon 7s infinite;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

@keyframes neon {
  0%, 100% {
      text-shadow: 0 0 10px lightgray, 0 0 20px lightgray, 0 0 30px lightgray; /* Effet de lumière */
  }
  50% {
      text-shadow: none; /* Aucune ombre */
  }
}

.button {
  color: white;
  font-family: Display;
  font-size: 25px;
  padding: 10px;
  margin: 10px;
  border: white solid 2px;
  border-radius: 5px;
  transition: 0.5s;
}

.unset {
  color: inherit; /* Rétablit la couleur du texte héritée */
  font-size: inherit; /* Rétablit la taille de police héritée */
  text-decoration: none; /* Supprime le soulignement */
}

.button:hover {
  cursor: pointer;
  color: black;
  background-color: white;
  transform: translateY(-10px);
}

#buttons-container {
  display: flex;
}