body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f2f3f8;
  font-family: Poppins, Helvetica, 'sans-serif';
}

.splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
}

.splash-screen__loading {
  display: inline-flex;
  align-items: baseline;
  gap: 0.06em;
  margin-top: 6px;
  color: #fe712c;
  font-size: 1.05rem;
  font-weight: 500;
}

.splash-screen__dots {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  margin-left: 2px;
  height: 1em;
}

.splash-screen__dots > span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
  animation: splashLoadingDotJump 0.95s ease-in-out infinite;
}

.splash-screen__dots > span:nth-child(2) {
  animation-delay: 0.14s;
}

.splash-screen__dots > span:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes splashLoadingDotJump {
  0%,
  70%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  25% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-screen__dots > span {
    animation: none;
    opacity: 0.75;
  }
}
