body {
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f6f7f8;
  overflow: hidden;
}

.intro-container {
  width: 100%;
  height: 100%;
  margin: 0px;
}

.hidden-desktop {
  display: none !important;
}

.intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 274px;
  animation: moveToCorner 2s ease-in-out forwards, fadeOut 0.75s ease-in 0.7s;
}

@keyframes moveToCorner {
  0% {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    top: -55px;
    left: 10%;
    transform: translate(0, 0) scale(0.4);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

@media (max-width: 950px) {
  .intro-logo {
    width: 200px;
  }
}

@media (max-width: 700px) {
  body {
    background-color: #2a3647;
  }

  .hidden-mobile {
    display: none !important;
  }

  .hidden-desktop {
    display: flex !important;
  }

  @keyframes moveToCorner {
    0% {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1);
    }
    100% {
      top: -55px;
      left: -38px;
      transform: translate(0, 0) scale(0.25);
    }
  }

  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
}

@media (max-width: 500px) {
  .intro-logo {
    width: 150px;
  }
}
