.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #0B0704;
  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: 150px;
}
}
@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  33% {
    opacity: 1;
    transform: translateY(0);
  }

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