/* Simple styling to center the button */
body {
  display: flex;
  height: 100vh;
  margin: 0;
  justify-content: center;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f0f0f0;
}

button {
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
}
