body {
  background-color: #2e688d;
  text-align: center;
  display: flex;
  align-items: center;
  min-height: 100vh;
  font-family: Arial, "Zapf Dingbats";
}
section {
  margin: 0px auto;
  position: relative;
  padding: 100px;
}
.moon {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  box-shadow: inset -27px -27px 0px 0px #d2d3d5;
  transition: transform ease-in 10s;
  &:hover {
    transform: rotate(360deg);
    transition: transform ease-in 10s;
  }
}
.shadow {
  display: block;
  width: 350px;
  height: 350px;
  background-color: #224f6b;
  border-radius: 50%;
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -45%);
}
span {
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d2d3d5;
  box-shadow: inset 2px 2px 0px 0px #bebfc1;
  border: 2px solid white;
}
span:nth-child(1) {
  bottom: 20px;
  right: 112px;
  width: 80px;
  height: 80px;
  box-shadow: inset 4px 8px 0px 0px #bebfc1;
  border: 4px solid white;
}
span:nth-child(2) {
  bottom: 20px;
  left: 130px;
  width: 15px;
  height: 15px;
}
span:nth-child(3) {
  top: 88px;
  right: 25px;
  width: 15px;
  height: 15px;
}
span:nth-child(4) {
  bottom: 124px;
  right: 26px;
  width: 25px;
  height: 25px;
}
span:nth-child(5) {
  bottom: 102px;
  right: 79px;
  width: 20px;
  height: 20px;
}
span:nth-child(6) {
  top: 95px;
  right: 53px;
  width: 40px;
  height: 40px;
}
span:nth-child(7) {
  top: 90px;
  left: 102px;
  width: 55px;
  height: 55px;
}
span:nth-child(8) {
  top: 45px;
  left: 150px;
  width: 30px;
  height: 30px;
}
span:nth-child(9) {
  top: 150px;
  left: 170px;
  width: 22px;
  height: 22px;
}
span:nth-child(10) {
  top: 140px;
  left: 70px;
  width: 25px;
  height: 25px;
}
span:nth-child(11) {
  top: 100px;
  left: 33px;
  width: 15px;
  height: 15px;
}
span:nth-child(12) {
  top: 40px;
  left: 120px;
  width: 15px;
  height: 15px;
}
span:nth-child(13) {
  top: 215px;
  left: 52px;
  width: 15px;
  height: 15px;
}
p {
  color: white;
  font-size: 50px;
  position: absolute;
  transition: all ease-in 0.8s;
  &:hover {
    color: #faf26e;
    transition: all ease-in 0.5s;
    transform: scale(2);
  }
}
p:nth-of-type(1) {
  top: 20px;
  left: 60px;
}
p:nth-of-type(2) {
  top: 90px;
  right: 80px;
  font-size: 20px;
}
p:nth-of-type(3) {
  bottom: 10px;
  right: 10px;
  font-size: 50px;
}
p:nth-of-type(4) {
  bottom: 00px;
  left: 40px;
  font-size: 80px;
}
p:nth-of-type(5) {
  top: -100px;
  left: 250px;
  font-size: 60px;
}
p:nth-of-type(6) {
  bottom: -40px;
  left: 250px;
  font-size: 30px;
}
.deathstar {
  width: 20px;
  height: auto;
  transition: transform 5s ease, fill 5s ease;
  z-index: 5;
}

.deathstar-wrap {
  width: 20px;
  height: auto;
  fill: white;
  position: absolute;
  top: 10px;
  right: 10px;
}

.deathstar-wrap:before {
  content:'';
  display: block;
  width: 300px;
  height: 5px;
  background-color: red;
  transform: rotate(-45deg);
  transform-origin: top right;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: -1;
  width: 0;
  opacity: 0;
}

.deathstar-wrap:hover:before {
  opacity: 1;
  width: 300px;
  transition: width 1s ease, opacity 1s linear,  transform 1s ease;
}

// .deathstar:hover {
//   fill: black;
//   transform: scale(200);
//   transition: transform 5s ease, fill 5s ease;
// }