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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  background-color: #f2f2f2;
}

.custom-loader {
  width: 70px;
  height: 70px;
  background: radial-gradient(farthest-side, #7a65f4 90%, rgba(0, 0, 0, 0)) center/26px 26px, radial-gradient(farthest-side, #6f6d91 90%, rgba(0, 0, 0, 0)) bottom/12px 12px;
  background-repeat: no-repeat;
  animation: s7 2s infinite linear;
  position: relative;
}

.custom-loader::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  inset: auto 0 16px;
  margin: auto;
  background: #aaeddf;
  border-radius: 50%;
  transform-origin: 50% calc(100% + 10px);
  animation: inherit;
  animation-duration: 1s;
}

@keyframes s7 {
  100% {
    transform: rotate(1turn);
  }
}
.container {
  position: relative;
}

.content {
  height: 100vh;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
}

.caption {
  margin-top: 24px;
}

/*# sourceMappingURL=style.css.map */
