/* styles.css */
body {
  background-color: #f0f8ff;
  font-family: Arial, sans-serif;
  text-align: center;
  margin-top: 100px;
}

h1 {
  color: #0077cc;
}

button {
  padding: 10px 20px;
  background-color: #28a745;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background-color: #218838;
}
