#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-base);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: slideUp 1s ease forwards;
  animation-delay: 2s;

  display: none;
}

.intro-text {
  font-size: 2rem;
  color: var(--color-text-primary);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    transform: translateY(-100%);
  }
}
