#welcome {
  color: #fff;
  font-size: 2rem;
  transition: all 1s;
  background-color: #000;
  z-index: 50;
  display: none;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
}

#welcome.htmx-swapping {
  opacity: 0;
}

.welcome-text {
  display: flex;
  flex-direction: row;
}

.reveal {
  opacity: 0;
  max-width: 0;
  animation: revealText 1s ease forwards 0.33s;
}

@keyframes revealText {
  100% {
    opacity: 1;
    max-width: 80px;
  }
}
