
.chess-board {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    width: 400px;
    height: 400px;
}

.chess-piece {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    cursor: move;
}

.white {
    background-color: #fff;
}

.black {
    background-color: #000;
    color: #fff;
}
