body {
  font-family: Arial, sans-serif;
  background: #f0f4f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.container {
  text-align: center;
  background: #fff;
  padding: 25px 35px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
  font-size: 2.5em;
  margin: 10px 0;
}
button {
  padding: 8px 16px;
  margin: 5px;
  font-size: 1em;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  transition: 0.2s;
}
button:hover {
  background-color: #0056b3;
}
.reset {
  background-color: #dc3545;
}
.reset:hover {
  background-color: #b02a37;
}
p {
  margin: 8px 0;
  font-size: 1em;
}
