#maze-container {
    display: grid;
    grid-template-columns: repeat(10, 30px);
    grid-template-rows: repeat(10, 30px);
    gap: 1px;
    background-color: #000;
    width: fit-content;
    margin: 50px auto;
}

.cell {
    width: 30px;
    height: 30px;
    background-color: #fff;
}

.wall {
    background-color: #000;
}

.player {
    background-color: red;
}

.exit {
    background-color: green;
}