/* General reset */
body {
  margin: 0;
  padding: 0;
  background-color: #1c162b;
  color: #e6dff0;
  font-family: 'Pixelify Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
  animation-delay: 0.5s;
}

.title {
  font-size: 3rem;
  margin-bottom: 0.5em;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2em;
  font-style: italic;
  color: #b9a6ce;
}


.enter-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: transparent;
  color: white;
  text-decoration: none;
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: bold;

  border: 2px solid white;
  border-radius: 8px;

  /* subtle shadow on text and border */
  box-shadow:
    0 0 5px rgba(255, 255, 255, 0.7),
    0 0 10px rgba(255, 255, 255, 0.3);

  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
  animation-delay: 4s;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.enter-button:hover {
  background-color: white;
  color: #6e4a9e;
  box-shadow:
    0 0 10px #fff,
    0 0 20px #fff;
}


/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
