@font-face {
  font-family: 'EmpiricRoman';
  src: url('fonts/EMPORO.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background-color: black;
  height: 100dvh;
  font-family: 'EmpiricRoman', serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  user-select: none; /* blocca selezione su tutto il body */
}

.container {
  padding: 2rem;
}

.aura {
  font-size: clamp(3rem, 15vw, 8rem);
  font-weight: normal;
  color: transparent;
  background: linear-gradient(
    90deg,
    black 0%,
    #c7a47a 50%,
    black 100%
  );
  background-size: 300% 100%;
  background-position: -100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  animation: auraShine 3s ease-out forwards;
  word-break: break-word;
}

@keyframes auraShine {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 50% 0;
  }
}

.subtitle {
  font-size: clamp(1.2rem, 5vw, 2rem);
  margin-top: 1rem;
  color: #c7a47a;
  opacity: 0;
  animation: fadeIn 1.5s ease 2s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
