/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #2e7d32;
    color: #ffffff;
    text-align: center;
}

#game {
    margin: 20px auto;
    max-width: 600px;
    background-color: #1b5e20;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#dealer, #player {
    margin-bottom: 20px;
}

#controls {
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    cursor: pointer;
}

#message {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}
