.splash-screen {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  inset: 0;
  gap: 0.25rem;
  color: #0b1b4b;

  & .space {
    flex: 1;
  }

  & .logo {
    height: 56px;
  }

  & .text {
    flex: 1;
  }

  & .bounce {
    animation: splash-screen-bounce 1s infinite;
  }
}

@media (prefers-color-scheme: dark) {
  .splash-screen {
    color: #d6d8e3;
  }
}

@keyframes splash-screen-bounce {
  0%, 100% {
    transform: translateY(-40px);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
