body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  background: #121212;
  color: #ff007f;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animate-container {
  text-align: center;
  animation: riseUpFadeScale 1s ease forwards;
  opacity: 0;
  transform: translateY(40px) scale(0.8);
}

/* Animación que sube, aumenta tamaño y opacidad */
@keyframes riseUpFadeScale {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Opcional para los enlaces, que tengan un poco de estilo */
a {
  display: inline-block;
  margin: 10px 15px;
  padding: 10px 20px;
  background: #3a3a5c;
  color: #ff007f;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

a:hover {
  background: #55557a;
}
