body {
  background-color: black;
  color: white;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: center;
  overflow: hidden;
  user-select: none; /* Make text unselectable for effect */
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 2s forwards;
}

h2 {
  font-size: 1.5rem;
  color: #ff3333;
  opacity: 0;
  animation: fadeIn 2s forwards 1s; /* Delay the second line */
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

