
body {
    background: rgb(5,31,3);
    background: linear-gradient(90deg, rgba(5,31,3,1) 0%, #351d02 19%, #351d02 90%, rgba(5,31,3,1) 100%);
    color: white;
    
}

#titleBar {
    width: 100%;
    display: flex;
    justify-content: center;
}

h1 {
    color: rgb(227, 233, 41);
    font-size: xx-large;
    /* text-shadow: 2px 2px 5px  lightgreen; */
}

#dealerHand, #playerHand {
    background: rgb(30, 175, 30);
    border-color: darkgreen;
    border-width: 5px;
    border-style: solid;
    border-radius: 30px;
    padding: 20px;
    margin: 20px;
    display: flex;
    justify-content: center;
}

button {
    background: yellow;
    color: black;
    padding: 10px;
    border-radius: 10px;
}

img {
    margin: 5px;
    border-radius: 5px;
    box-shadow: 4px 4px darkslategray;

}

#scoreBar {
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    font-size: large;
}

#textBox {
    font-size: xx-large;
    text-shadow: 2px 2px darkgreen;
}

#statusBar {
    background: darkolivegreen;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

#statusBar.div {
    margin: 10px;
}

#wallet {
    display: flex;
    justify-content: space-between;
    width: 30%;
    padding: 10px;
}

#wallet.div {
    margin: 20px;
    padding: 20px;
}