#game-board {
    display: grid;
    grid-template-columns: repeat(20, 20px);
    grid-template-rows: repeat(20, 20px);
    gap: 1px;
    background-color: #000;
    width: fit-content;
    margin: 50px auto;
}

.cell {
    width: 20px;
    height: 20px;
    background-color: #000;
}

.pacman {
    background-color: yellow;
    border-radius: 50%;
}

.coin {
    background-color: white;
    border-radius: 50%;
}