body {
  background-color: black;
  color: white;
  font-family: monospace, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.enter-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  width: 100%;
  z-index: 10;
}

#enter-text {
  font-size: 36px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

#enter-text:hover {
  color: #ff69b4; 
}

.ascii-art {
  white-space: pre-wrap;
  font-size: 24px;
  line-height: 1.1;
  color: pink;
  animation: moveArt 3s infinite alternate;
  display: inline-block;
  padding: 10px;
  max-width: 80%;
}

@keyframes moveArt {
  0% {
      transform: translateY(0) rotate(0deg);
  }
  100% {
      transform: translateY(-10px) rotate(10deg);
  }
}


audio {
  display: none;
}

.mouse-trail {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: pink;
  pointer-events: none;
  animation: trailAnimation 0.2s ease-out;
}

@keyframes trailAnimation {
  0% {
      transform: scale(1);
      opacity: 1;
  }
  100% {
      transform: scale(0);
      opacity: 0;
  }
}
