.game-board {
    width: fit-content;
    margin: auto;
}


.game-container {
    background-color: white;
}

.row {
    display: flex;
}

.col {
    /* border: 0.1px solid rgba(0, 0, 0, .3); */
    width: 10px;
    height: 10px;
    border-radius: 50px;
}

.bigSize .col {
    width: 100px;
    height: 100px;
}

.col.in {
    background-color: darkgreen;
}

.col.food {
    background-color: darkgoldenrod;
}

.controller {
    gap: 20px;
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.middle {
    display: flex;
    gap: 40px;
    align-items: center;
}

.controller button {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    padding: 10px;
}

.controller button[data-control="pause"] {
    width: 40px;
    height: 40px;
}