.splash {
  height: 100vh;
  width: 100vw;
  position: fixed;
  display: flex;
  align-items: center;
  opacity: 1;
  inset: 0;

  .wrapper {
    animation: blinkOpacity 2s ease-in-out infinite;
    animation-delay: 6s;
    width: 100%;
    text-align: center;

    .top {
      margin-top: -100px;
      margin-right: -440px;
    }

    .bottom {
      opacity: 0;
    }
  }
}

@media (min-width: 430px) {
  .splash {
    .wrapper {
      .top {
        margin-right: 0;
        transform: translateX(200px);
        animation: topAnimate 1.3s ease-in-out forwards;
        animation-delay: 4s;
      }

      .bottom {
        opacity: 1;
        transform: translateX(200px);
        animation: bottomAnimate 1.3s ease-in-out forwards;
        animation-delay: 4.2s;
        margin-bottom: 1px;
      }
    }
  }
}

@keyframes topAnimate {
  0% {
    transform: translateX(200px);
  }
  10% {
    transform: translateX(200px);
  }
  100% {
    transform: translateX(375px);
  }
}

@keyframes bottomAnimate {
  0% {
    transform: translateX(200px);
  }
  10% {
    transform: translateX(200px);
  }
  100% {
    transform: translateX(-60px);
  }
}

@keyframes blinkOpacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
