body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    font-family: sans-serif;
}

button {
    padding: 1rem 2rem;
    font-size: 1rem;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #005a9e;
}

#messageArea {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #333;
}
