body {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}
.board {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    width: 90vh;
    max-width: 90%;
    padding: 10px;
}
table {
    aspect-ratio: 1 / 1;
    border: 4px solid black;
    width: 100%;
    table-layout: fixed;
}
tr td
{
    background-color: #fff;
}

tr:nth-child(even) td:nth-child(odd), 
tr:nth-child(odd) td:nth-child(even)
{
    background-color: #ccc;
}
td .content {
    aspect-ratio: 1 / 1 ;
}

.displayData {
    font-size: 26px; 
    font-weight: 700; 
}
.turnIndicator {
    text-align: center;
    width: 200px; 
    border: 2px solid; 
}

.cell {
    width: auto;
    background: transparent;
    aspect-ratio: 1 / 1;
    border: 4px solid transparent;
}

.gamepiece {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0px 0px 2px 0px;
}
.red {
    border: 4px solid red;
    background: red;
}
.red:hover {
    cursor: pointer; 
}
.black {
    border: 4px solid black;
    background: #000000ba;
}
.king {
    border: 4px solid gold;
}
.inactive {
    opacity: .65
}
.jumpAvailable {
    border: 4px solid #0cf90c;
}
.validMove {
    background: lightgreen !important;
    cursor: pointer;
}
.selected {
    background: grey !important;
}

.winnerBannerContainer {
    position: absolute;
    width: calc(100% - 20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.winnerBanner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100px;
    background: gold;
    z-index: 1;
    opacity: .85;
}

.winnerText {
    font-size: 60px;
}

.hidden {
    visibility: hidden;
}
.visible {
    visibility: visible;
}
.logo {
    aspect-ratio: 1 / 1;
    width: 50%;
    height: 50%;
    margin-top: 4px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    pointer-events: none;
    opacity: .9;
    filter: grayscale(1);
}

.resetButton {
    cursor: pointer; 
    font-weight: 600; 
    width: 110px; 
}




































