body {
  padding: 0;
  margin: 0;
}
#app > .overlay {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  text-align: center;
}
#app > .overlay .title {
  font-size: 1rem;
}
#app > .overlay .desc {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #999;
}
@keyframes spin3D {
  from {
    transform: rotate3d(0.5, 0.5, 0.5, 360deg);
  }
  to {
    transform: rotate3d(0deg);
  }
}
.spinner-box {
  width: 18.75rem;
  height: 18.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.leo {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.blue-orbit {
  width: 10.3125rem;
  height: 10.3125rem;
  border: 0.0625rem solid #91daffa5;
  -webkit-animation: spin3D 3s linear 0.2s infinite;
}
.green-orbit {
  width: 7.5rem;
  height: 7.5rem;
  border: 0.0625rem solid #91ffbfa5;
  -webkit-animation: spin3D 2s linear 0s infinite;
}
.red-orbit {
  width: 5.625rem;
  height: 5.625rem;
  border: 0.0625rem solid #ffca91a5;
  -webkit-animation: spin3D 1s linear 0s infinite;
}
.white-orbit {
  width: 3.75rem;
  height: 3.75rem;
  border: 0.125rem solid #ffffff;
  -webkit-animation: spin3D 10s linear 0s infinite;
}
.w1 {
  transform: rotate3D(1, 1, 1, 90deg);
}
.w2 {
  transform: rotate3D(1, 2, 0.5, 90deg);
}
.w3 {
  transform: rotate3D(0.5, 1, 2, 90deg);
}
