.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background: #c9f1e2;;
  /* background: linear-gradient(200deg, rgba(213,244,246,1) 0%, rgba(235,211,236,1) 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading__logo {
  margin-top: -20px;
  opacity: 0;
  animation: logo_fade 3s 0.1s forwards;
  width: 179px;
}

@media all and (min-width: 768px) {
.loading__logo {
  width: 300px;
}
}
@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  33% {
    opacity: 1;
    transform: translateY(0);
  }

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