/* Add styles here */
body {
  background: linear-gradient(to right, #2c3e50, #fd746c);
  color: white;
  font-family: sans-serif;
  text-align: center;
  padding-top: 50px;
}

h1 {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-size: 3em;
}

button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #45a049;
}