/* --- ESTILOS PARA FONDO DE ESTRELLAS --- */

/* El contenedor de las estrellas */
#universe {
  position: fixed; /* Se queda fijo */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* Pone las estrellas DETRÁS de tu contenido */
  z-index: -1; 
  
  /* --- ¡AQUÍ ESTÁ LA LÍNEA QUE ARREGLA EL SCROLL! --- */
  /* Evita que las estrellas creen barras de scroll, 
     pero no afecta al scroll principal del 'body' */
  overflow: hidden; 
}

/* Los 4 tamaños de estrellas */
.star0 {
  height: 1px;
  width: 1px;
  opacity: 1;
  position: absolute;
}

.star1 {
  height: 2px;
  width: 2px;
  border-radius: 50%;
  opacity: 1;
  position: absolute;
}

.star2 {
  height: 3px;
  width: 3px;
  border-radius: 50%;
  opacity: 1;
  position: absolute;
}

.star3 {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  opacity: 1;
  position: absolute;
}
