:root {
  height: 100%;
}

body {
  height: 100%;
  background-color: #f5f8fb;
}

.bg-soft {
  height: 100%;
}

.loader {
  text-align: center;
  background-color: #f5f8fb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.loader-logo {
  width: 200px;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .loader-logo {
    animation: App-logo-zoom infinite 4s ease-in-out;
  }
}

@keyframes App-logo-zoom {
  0% {
    transform: scale(1,1);
  }
  100% {
    transform: scale(1.2,1.2);
  }
}
