#grid {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    grid-template-rows: repeat(15, 1fr);
    width: 400px;
    height: 400px;
}

.cell {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
}