/* FOND ÉTOILÉ (en arrière-plan) */
.starfield-container {
  position: fixed;          /* reste derrière tout */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;              /* envoie le canvas derrière */
  overflow: hidden;
}

#space {
  display: block;
  width: 100%;
  height: 100%;
  background: black;
}

/* CONTENU AU-DESSUS */
.page {
  position: relative;
  z-index: 1;               /* au-dessus du fond étoilé */
}