body {
  margin: 0;
}

.loader-container {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  background: #343a40;
}

.loader {
  position: relative;
  margin: auto;
  text-align: center;
}

.animated-logo {
  animation: animated-logo 1s infinite;
  min-width: 100px;
  width: 45%;
}
@media screen and (min-width: 769px) {
  .animated-logo {
    width: 30%;
  }
}
@media screen and (min-width: 992px) {
  .animated-logo {
    width: 20%;
  }
}
@media screen and (min-width: 1200px) {
  .animated-logo {
    width: 15%;
  }
}

@keyframes animated-logo {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
}

/*# sourceMappingURL=preloading.css.map */
