body {
font-family: Arial, sans-serif;
text-align: center;
padding: 20px;
background-color: white;
transition: background-color 0.3s ease;
}


h1 {
color: #ff6600;
}


button {
background-color: #007bff;
border: none;
color: white;
padding: 10px 20px;
font-size: 16px;
border-radius: 8px;
cursor: pointer;
margin-top: 20px;
}


button:hover {
background-color: #0056b3;
}