body {
  display: flex;
  flex-direction: column;
  margin: 0;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background: linear-gradient(125deg, #00103a 0%, #3e5f77 100%);
  overflow: hidden;
}

center {
  display: none !important;
}

body > div:nth-of-type(4),
body > div:nth-of-type(5) {
  display: none !important;
}

.datos {
  color: white;
  text-align: center;
  background-color: #00103a65;
  border: solid 1px rgba(159, 174, 198, 0.332);
  padding: 2rem;
  border-radius: 8px;
}

.sky-container {
  position: absolute;
  width: 100vh;
  height: 100vh;
  transform: rotateZ(45deg);
}

.star {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(-45deg, #5f91ff, rgba(0, 0, 255, 0));
  filter: drop-shadow(0 0 5px #2557bb);
  animation: tail 3000ms ease-in-out infinite, shooting 3000ms ease-in-out infinite;
}

.star::before,
.star::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(-45deg, rgba(0, 0, 255, 0), #5f91ff, rgba(0, 0, 255, 0));
  border-radius: 100%;
  transform: translateX(50%) rotateZ(45deg);
  animation: shining 3000ms ease-in-out infinite;
}

.star::after {
  transform: translateX(50%) rotateZ(-45deg);
}

@keyframes shining {
  0% {
    width: 0;
  }
  50% {
    width: 30px;
  }
  100% {
    width: 0;
  }
}

@keyframes tail {
  0% {
    width: 0;
  }
  30% {
    width: 100px;
  }
  100% {
    width: 0;
  }
}

@keyframes shooting {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(320px);
  }
}

.star:nth-child(1) {
  top: calc(40% - 100px);
  left: calc(80% - 300px);
  animation-delay: 1650ms;
}

.star:nth-child(1)::before,
.star:nth-child(1)::after {
  animation-delay: 1650ms;
}

.star:nth-child(2) {
  top: calc(60% - -50px);
  left: calc(60% - 190px);
  animation-delay: 350ms;
}
.star:nth-child(2)::before,
.star:nth-child(2)::after {
  animation-delay: 350ms;
}

.star:nth-child(3) {
  top: calc(45% - -90px);
  left: calc(30% - 200px);
  animation-delay: 400ms;
}
.star:nth-child(3)::before,
.star:nth-child(3)::after {
  animation-delay: 4 00ms;
}

.star:nth-child(4) {
  top: calc(70% - 50px);
  left: calc(30% - 250px);
  animation-delay: 4700ms;
}
.star:nth-child(4)::before,
.star:nth-child(4)::after {
  animation-delay: 4700ms;
}

.star:nth-child(5) {
  top: calc(75% - -190px);
  left: calc(16% - 200px);
  animation-delay: 2100ms;
}
.star:nth-child(5)::before,
.star:nth-child(5)::after {
  animation-delay: 2100ms;
}
