body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
}

h1 {
    color: blue;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    background-color: blue;
    color: white;
    text-decoration: none;
    border-radius: 8px;
}

.button:hover {
    background-color: darkblue;
}
