@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: var(--darkBlue)
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --darkBlue: #19313e;
  --cream: #ffe4c4;
  --emerald: #40755e;
  --gold: #956d3c;
  --bronze: #634625;
}
.loader {
  position: absolute;
  height: 120px;
  width: 120px;
}
span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: var(--emerald); */
  transform: rotate(calc(18deg * var(--i)))
}
span:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #00c3ff;
  box-shadow: 0 0 10px #00c3ff;
  animation: animate 2s linear 30;
  animation-delay: calc(0.1s * var(--i))
}
@keyframes animate {
  0%{
    transform: scale(1);
  }
  80%, 100% {
    transform: scale(0);
  }
}
