@font-face {
  font-family: 'anurati';
  src: url('../fonts/Anurati-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'anurati', monospace;
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

a{
  text-decoration: none;
}

#starCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.decode-text {
  text-align: center;
  font-size: 10vw;
  opacity: 0; /* Caché au départ */
  transition: opacity 1s ease-in-out;
}

.text-animation {
  display: inline-block;
  position: relative;
  color: transparent;
  text-transform: uppercase;
}

.text-animation::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: white;
  width: 0;
  height: 1.2em;
  transform: translate(-50%, -55%);
  transition: width 0.2s ease;
}

.text-animation.state-1::before {
  width: 1px;
}

.text-animation.state-2::before {
  width: 0.9em;
}

.text-animation.state-3 {
  color: white;
}

.text-animation.state-3::before {
  width: 0;
}
