.container {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    gap: 16px;
    margin-top: 40px;
}

.controls {
    border: 4px solid black ;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.grid {
    border: 4px solid black;
    width: 800px;
    height: 800px;
    display: flex;
    flex-wrap: wrap;
    flex: none;
}

p {
    text-align: center;
}

button {
    /* width: fit-content; */
    padding: 8px 24px;
}

.cell {
    /* border: 1px solid gray; */
    box-sizing: border-box;
    -webkit-user-drag: none;
}