body{
    font-family: Tahoma, sans-serif;
}

.board {
    width: 90%;
    min-width: 350px;
    max-width: 700px;
}

.fbchild {
    float: left;
}

.clear {
    clear:both;
}

ul.mates li {
    list-style-type: none;
}

ul.mates li:hover {
    background-color: #F5F6DAFF;
}

ul.other li {
    list-style-type: none;
}

.sqhighlight {
    background-image: radial-gradient(circle at center, green 50%, transparent 50%);
}


.incheck {
    border-radius: 50%;
    /*border: 1px solid #e34646;*/
    box-shadow: inset 0px 15px 41px red;
    -webkit-appearance: none;
    -webkit-box-shadow: inset 0 15px 41px red;
    background-image: radial-gradient(circle at center, red 50%, transparent 50%);
}

.overlayBox {
    display: none;
    z-index: 20;
    font-size: 4em;
    text-align: center;
    color: white;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.drawersDiv {
    background: rgba(255,0,0, 0.73);
}

.losersDiv {
    background: rgba(255,0,0, 0.73);
}

.winnersDiv {
    background-color: green;
    background: rgba(19, 150, 19, 0.73);
    color: white;
}

img.yellowchessgirl {
   width: 70%;
}

.parent {
    position: relative;
}
.child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}