#board {
    display: grid;
    margin: 20px auto;
    gap: 5px;
    justify-content: center;
    clear: both;
}

.cell {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
}

#result {
    font-size: 18px;
    font-weight: bold;
}
#score { display:none; }
#timer { font-size:22px; }
.punktacja { display:block;text-align:center;font-size:18px;background: #eee;border-radius: 0 14px;margin: 14px 0; }


@media all and (min-width: 701px) {
    #board { min-height: 655px; }
}

@media all and (max-width: 700px) {
    #board { min-height: 380px; }
}