/* Sfondo stellato e stile poetico */
body {
  margin: 0;
  padding: 0;
  background: url("cielo.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: "Georgia", serif;
  color: white;
  text-align: center;
}

/* Titolo principale */
h1 {
  margin-top: 30px;
  font-size: 2em;
}

/* Frase poetica sotto il titolo */
p {
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Contenitore del cielo */
.cielo {
  position: relative;
  width: 100%;
  height: 600px;
}

/* Stelle cliccabili */
.stella {
  position: absolute;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 8px white;
  transition: 0.3s;
}

/* Effetto al passaggio del mouse */
.stella:hover {
  background: gold;
  box-shadow: 0 0 12px gold;
  transform: scale(1.3);
}