@charset "utf-8";
/* CSS Document */


body {
  margin: 0;
  overflow: hidden; /* Evita barras de desplazamiento */
  background-color: #000; /* Fondo negro */
}

#constellation {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer; /* Indica que es un enlace */
}