body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

body button {
    border: none;
    background: none;
}

#dealer-cards img {
    height: 175px;
    width: 125px;
    margin: 1px;
}

#your-cards img {
    height: 175px;
    width: 125px;
    margin: 1px;
}

#your-hand img {
    height: 175px;
    width: 125px;
    margin: 1px;
}


#played-cards img {
    height: 175px;
    width: 125px;
    margin: 1px;
}

#hit {
    width: 100px;
    height: 50px;
    font-size: 20px;
}

#stay {
    width: 100px;
    height: 50px;
    font-size: 20px;
}

#dealer-cards, #your-cards{
    position: relative;
    height: 220px;
    width: 600px;
    margin: 0 auto;
}

#played-cards {
    position: fixed;
    right: 30px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    z-Index: 10;
    padding: 0;
}

.facedown {
    position: absolute;
    top: 0;
    z-index: 1;
    padding: 0;
    border: none;
    background: none;
}

.faceup {
    position: absolute;
    top: 40px; /* how far down the faceup cards peek out, adjust to taste */
    z-index: 2;
}