* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0c1b21;
}

.loader{
  position: relative;
  width: 250px;
  height: 250px;
  filter: url(#gooey);
}

.loader span{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  /* transform: scale(0); */
  transform: rotate(calc(45deg * var(--i)));
}

.loader span::before{
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - 20px);
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #c7eeff, #03a9f4);
  border-radius: 50%;
  box-shadow: 0 0 30px #00bcd4;
}

.rotate{
  animation: animate 4s ease-in infinite;
  animation-delay: calc(-0.2s * var(--j));
}
@keyframes animate {
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}

svg{
  width: 0;
  height: 0;
}