/* Basic reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: #121212;
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

h1 {
  color: #8a2be2;
  margin-bottom: 20px;
}

p {
  margin-bottom: 30px;
  font-size: 18px;
  color: #ccc;
}

button {
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  background-color: #8a2be2;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #a564ff;
}

footer {
  position: absolute;
  bottom: 10px;
  font-size: 14px;
  color: #888;
}
