@import "https://dev.cdn.unyt.org/uix/style/fontawesome.css";
body {
  background-color: transparent;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji";
}
body h1, body h2, body h3, body h4, body h5 {
  line-height: 1.2em;
  margin: 10px 0px;
  color: var(--text-highlight);
}

.spinner {
  --color: var(--bg-contrast);
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.spinner > div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid var(--color);
  border-radius: 50%;
  animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--color) transparent transparent transparent;
}
.spinner > div:nth-child(1) {
  animation-delay: -0.45s;
}
.spinner > div:nth-child(2) {
  animation-delay: -0.3s;
}
.spinner > div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
