* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0e0c09;
  font-family: Georgia, serif;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  width: clamp(180px, 40vw, 320px);
  opacity: 1;
}

h1 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-style: italic;
  text-align: center;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.letra {
  display: inline-block;
  color: #f5f0e8;
  transition: color 0.15s, transform 0.15s;
  white-space: pre;
}

.letra.activa {
  color: #4949489f;
  transform: translateY(-8px);
}