body {
  background-color: #111;
  color: #fff;
  font-family: sans-serif;
  text-align: center;
  padding: 2em;
}

h1 {
  margin-bottom: 2em;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}

button {
  background-color: #0DC2FF;
  color: #111;
  border: none;
  padding: 1em 2em;
  font-size: 1.2em;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #08a0cc;
  color: white;
}
