body {
  margin: 0;
}
.loading-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: black;
  /* background-color: #090f14; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.animation-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
}
.circle {
  position: absolute;
  width: 10px;
  height: 20px;
  border-radius: 100%;
  background-color: #f8f5ef;
  box-shadow: 0 0 10px #f8f5ef;
  animation: circle-appear 2s infinite;
  transform-origin: 60px 60px;
}
.circle:nth-child(1) {
  animation-delay: 0.1s;
  transform: rotatez(0deg);
}
.circle:nth-child(2) {
  animation-delay: 0.2s;
  transform: rotatez(18deg);
}
.circle:nth-child(3) {
  animation-delay: 0.3s;
  transform: rotatez(36deg);
}
.circle:nth-child(4) {
  animation-delay: 0.4s;
  transform: rotatez(54deg);
}
.circle:nth-child(5) {
  animation-delay: 0.5s;
  transform: rotatez(72deg);
}
.circle:nth-child(6) {
  animation-delay: 0.6s;
  transform: rotatez(90deg);
}
.circle:nth-child(7) {
  animation-delay: 0.7s;
  transform: rotatez(108deg);
}
.circle:nth-child(8) {
  animation-delay: 0.8s;
  transform: rotatez(126deg);
}
.circle:nth-child(9) {
  animation-delay: 0.9s;
  transform: rotatez(144deg);
}
.circle:nth-child(10) {
  animation-delay: 1s;
  transform: rotatez(162deg);
}
.circle:nth-child(11) {
  animation-delay: 1.1s;
  transform: rotatez(180deg);
}
.circle:nth-child(12) {
  animation-delay: 1.2s;
  transform: rotatez(198deg);
}
.circle:nth-child(13) {
  animation-delay: 1.3s;
  transform: rotatez(216deg);
}
.circle:nth-child(14) {
  animation-delay: 1.4s;
  transform: rotatez(234deg);
}
.circle:nth-child(15) {
  animation-delay: 1.5s;
  transform: rotatez(252deg);
}
.circle:nth-child(16) {
  animation-delay: 1.6s;
  transform: rotatez(270deg);
}
.circle:nth-child(17) {
  animation-delay: 1.7s;
  transform: rotatez(288deg);
}
.circle:nth-child(18) {
  animation-delay: 1.8s;
  transform: rotatez(306deg);
}
.circle:nth-child(19) {
  animation-delay: 1.9s;
  transform: rotatez(324deg);
}
.circle:nth-child(20) {
  animation-delay: 2s;
  transform: rotatez(342deg);
}
@keyframes circle-appear {
  from {
    transform: scale(0.1);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}