/* style.css */
body {
  font-family: 'Orbitron', sans-serif;
  background: #0c0c0c;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}
h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #FFD400, #FF00E0, #4A00A8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
p {
  font-size: 1.2rem;
  color: #cccccc;
  text-align: center;
  max-width: 600px;
}