html {
    background: #cfcfcf;
}

body {
    min-height: 100vh;
}

table {
    border-collapse: collapse;
    border: 2px solid black;
    background: rgb(131, 205, 240);
    font-size: 18px;
    margin: 0 auto;
}

th {
    background-color: #cfcfcf;
    font-size: 36px;
    width: 50px;
    height: 50px;

}

td {
    width: 50px;
    height: 50px;
    border: 2px solid black;
    font-size: 36px;
    text-align: center;
}

td:hover {
    cursor: pointer;
}

.chess-color-white {
    color: white;
}

.chess-color-black {
    color: black;
}

.cell-white {
    background-color: #FFCF73;
}

.cell-black {
    background-color: #7A5000;
}

.cell-active {
    background-color: darkseagreen;
}

.player {
    text-align: center;
}

.modal {
    background-color: rgba(207, 207, 207, 0.9);
    padding-top: 100px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.table-case {}