body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 50px;
    background-color: #f0f0f0;
    transition: background-color 0.3s;
}
h1 {
    color: #333;
}
button {
    padding: 12px 24px;
    font-size: 18px;
    background-color: #008CBA;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
button:hover {
    background-color: #005f7a;
}
