
.app-root {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  font-size: 2.5em;
  text-shadow: 0px 3px 3px rgba(255, 255, 255, 0.5);
}

@keyframes dots {
  50% {
    transform: translateY(-0.4rem);
  }

  100% {
    transform: translateY(0);
  }
}

.d {
  animation: dots 1.5s ease-out infinite;
  color: #666666;
  font-family: sans-serif;
}

.d-2 {
  animation-delay: 0.5s;
}

.d-3 {
  animation-delay: 1s;
}

.loadingText {
  color: transparent;
  background: #666666;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  text-shadow: 0px 3px 3px rgba(255, 255, 255, 0.5);
  font-family: sans-serif;
}
