/* Estilo para la sección del fondo estrellado */
#fondo_estrellado {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  background: #000;
}

/* Estilo exclusivo para las estrellas */
.estrella {
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
  background: white;
  animation: estrella_animada 5s linear infinite;
}

/* Animación de las estrellas */
@keyframes estrella_animada {
  0% {
    transform: scale(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
  100% {
    transform: scale(1) translateX(-4000%) rotate(360deg);
    opacity: 0;
  }
}
