body {
  background-color: black;
  margin: 0;
  padding: 0;
  font-family: monospace;
  font-size: 1.2vw;
  line-height: 2.8vh;
}

p {
  background: rgb(20, 20, 20, 0);
  position: absolute;
}

.moon {
  color: rgb(255, 240, 120);
  top: 3%;
  left: 76%;
}

.star-clutter {
  color: rgb(250, 215, 255);
  top: 12%;
  left: 60%;
}

.star {
  color: rgb(255, 240, 120);
  animation: fade 1.2s infinite 0ms;
  top: 9%;
  left: 72%;
}

.star-2 {
  color: rgb(255, 240, 120);
  animation: fade 1.2s infinite 4000ms;
  top: 28%;
  left: 82%;
}

.star-3 {
  color: rgb(255, 240, 120);
  animation: fade 1.2s infinite 800ms;
  top: 34%;
  left: 72%;
}

.big-star {
  color: rgb(255, 240, 120);
  top: 20%;
  left: 64%;
}

@keyframes fade {
  0% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 1;}
}