#blackjack-game * {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
#blackjack-game {
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#blackjack-game #app{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 2rem;
    background-image: url('../images/blackjack-table.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
}
#blackjack-game #app img{
    width: 100px;
    height: auto;
}
#blackjack-game table, #blackjack-game td{
    border: 1px solid black;
    background-color: slateblue;
}

#blackjack-game th{
    background-color: steelblue;
}

#blackjack-game header{
    min-height: 100px;
    width: 100vw;
    border: 2px solid lime;
    background-color: green;
    display: flex;
    justify-content: center;
    align-items: center;    
}
#blackjack-game header button{
    margin: 10px;
    width: 10%;
    height: 30px;
    cursor: pointer; 
}

#blackjack-game header div{
    width: 15%;
    height: 50px;
    border-radius: 5px;
    margin: 2px;
    text-align: center;
    border: 1px solid lime;
    display: flex;
    justify-content: center;
    align-items: center;  
}
/*
header div:first-child{
    border-style: none;
}
*/
#blackjack-game #app div{
    border: 2px solid lime;
    width: 400px;
    height: 200px;
    margin-bottom: 5px;
}
#blackjack-game #app div:nth-child(2){
    margin-bottom: 25%;
}


@keyframes blink { 
    50% { border-color: #ff0000; } 
 }
 .blinky{ 
     animation-name: blink ;
     animation-duration: .5s ;
     animation-timing-function: step-end ;
     animation-iteration-count: infinite ;
     animation-direction: alternate ;
 }
 