#gameContainer {
     width: min(1200px, 120vw);
    margin: 40px auto;
    text-align: center;
}
#input{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

#resetter{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}


#name {
    width: 200px;
    
}
#playersField {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    flex-wrap: wrap; 
    max-width: 100vw; 
}

#handField {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    
}

#dealOptions > div {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    flex-wrap: wrap; 
    max-width: 100vw; 
}

#handField > div,
#playersField > div,
#gameField > div {
    display: flex;
    flex-direction: row;
    gap: 8px;
    text-align: center;
    align-items: center;
    flex-wrap: wrap; 
    max-width: 100vw; 
}

#gameField {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

body {
    background-color: hsl(206, 21%, 15%);
    color: #d2dae2; 

    
}
          


.card {
    width: 60px;
    height: 90px;
    border: 2px solid black;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    background: white;
    cursor: pointer;
    font-size: 20px;
}
.card.one {
    background: #3c40c6;
    color: white;
}
.card.two {
    background: #ef5777;
    color: white;
}
.card.three {
    background: #00d8d6;
    color: white;
}
.card.four {
    background: #05c46b;
    color: white;
}

.card.five {
    background: #ffa801;
    color: white;
}
.card.six {
    background: #ff3f34;
    color: white;
}
.card.seven {
    background: #ffdd59;
    color: white;
}
.card.eight {
    background: #0be881;
    color: white;
}

.cardUI {
    width: 6px;
    height: 9px;
    border: 1px solid black;
    border-radius: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1px;
    background: white;
    cursor: pointer;
    font-size: 1px;
}