*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
    background-color: rgb(6, 73, 36);
    color: aliceblue;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

h1 {
    width: 100%;
    margin-bottom: 2rem;
    border-bottom: 2px solid grey;
    text-align: center;
}

.table{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
}


.dealer, .deck{
    margin-bottom: 1rem;
}

.controls{
    margin-top: 1rem;
}

h4{
    margin-bottom: 1rem;
}

.controls button{
    padding: .25rem;
    border-radius: 0;
    margin-left: 1rem;
}

.controls button:hover{
    cursor: pointer;
}

.card{
    height: 100px;
    margin-left: 1rem;
}

.messages{
    box-shadow: 1px 1px 1px 1px black;
    padding: 1rem;
    width: 100%;
}