/*@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");*/

body,
html {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #fff;
}

#root,
#app-site {
  display: flex;
  width: 100%;
  height: 100vh;
  background: inherit;
}

.loader {
  position: relative;
  margin: 0 auto;
  width: 60px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loader img {
  width: 120px;
  animation: spinPulse 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7));
}

.loading {
  width: 120px;
}

@keyframes spinPulse {
  0% {
    transform: rotate(0deg) scale(0.9);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(0.9);
  }
}

/*# sourceMappingURL=loader.css.map */
