/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 27 2025 | 01:56:10 */
.animated-gradient-background {
  /* Fondo con degradado lineal de tonos azules */
background: linear-gradient(90deg, rgba(9, 9, 69, 1) 0%, rgba(48, 79, 254, 1) 50%, rgba(9, 9, 69, 1) 100%);  background-size: 200% 200%;
  
  /* Aplica la animación */
  animation: gradientTransition 10s ease infinite alternate;
  
}

/* Define el movimiento de la animación */
@keyframes gradientTransition {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}