body,
html {
    text-align: center;
    font-family: "Miltonian Tattoo", cursive;
    font-weight: 400;
    font-style: normal;

}

body {
    background-color: darkgreen;
}

#player_hand {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 2em;
}

#dealer_hand {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 10em;
}

#card {
    padding-right: 2em;
}

button {
    font-family: 'Miltonian Tattoo', cursive;
    font-size: 20px;
    background-color: #228B22;
    /* Casino green */
    color: white;
    border: 2px solid gold;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    text-shadow: 1px 1px 2px black;
}

button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px gold /*shimmer effect on button hover*/
}


#playGameBtn {
    background-color: #B22222;
    /* Reddish for emphasis */
}


#hitBtn {
    background-color: #1E90FF;
    /* Blue for hit */
}



#standBtn {
    background-color: #FFD700;
    /* Gold for stand */
    color: black;
}


#playAgainBtn {
    background-color: #8B4513;
    /* Brownish for replay */
}