* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #072631;
  animation: animateBg 10s linear infinite;
}

@keyframes animateBg {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

svg {
  position: relative;
  width: 90px;
  height: 90px;
  z-index: 1000;
  animation: fixAnimation 2s ease-in-out infinite;
}

@keyframes fixAnimation {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(0deg);
  }

  50.0000000001%,
  100% {
    transform: rotateY(180deg);
  }
}

svg circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 10;
  stroke: #25e6ff;
  stroke-linecap: round;
  transform: translate(5px, 5px);
  stroke-dasharray: 250;
  stroke-dashoffset: 249;
  animation: animate 2s ease-in-out infinite;
}

@keyframes animate {

  0%,
  2% {
    stroke-dashoffset: 249;
  }

  50% {
    stroke-dashoffset: 125;
  }

  98%,
  100% {
    stroke-dashoffset: 249;
  }
}

.loader {
  animation: positionX 2s linear infinite;
}

@keyframes positionX {
  0% {
    transform: rotate(180deg) translateX(-40px);
  }

  100% {
    transform: rotate(180deg) translateX(40px);
  }
}

.box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  display: flex;
  justify-content: center;
  -webkit-box-reflect: below -80px linear-gradient(transparent, #0004);
}

.box:nth-child(2) {
  filter: blur(10px);
}

.box:nth-child(3) {
  filter: blur(20px);
}