/* ChesSixTV ChesSixTV.css v.1.0.1.0. */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;0,700;1,400&display=swap");

/* universal selector */
* {
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}

/* element selectors */
h1 {
    text-align: center;
}

body {
    font: 400 14px Roboto, sans-serif;
    background: #f0f0f5;
    -webkit-font-smoothing: antialiased;
    
    text-align: center;
    justify-content: center;
}

input,
textarea {
    font: 400 18px Roboto, sans-serif;
}

/* class selectors */
.message {
    text-align: center;
}

.black_caps {
    padding: 0;
    margin: 0;
    font-size: 20px;
    color: black;
    align-items: center;
    white-space: pre;
}

.board {
    padding: 0;
    margin: 0 auto;
    
    width: min-content;
    border: 10px solid red;
    border-radius: 6px;
    
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    align-items: center;
    text-align: center;
}

.white_caps {
    padding: 0;
    margin: 0;
    font-size: 20px;
    color: black;
    align-items: center;
    white-space: pre;
}

.scoreboard {
    padding: 0;
    margin: 0 auto;
    
    border: 10px solid red;
    border-radius: 6px;
    
    display: flex;
    flex-direction: row;
    
    width: 600px;
    max-width: 600px;
    
    font-family: monospace;
    
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: pre;
    
    /* justify-content: left; */
    /* align-items: left; */
    /* white-space: pre; */
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Indent the even rows */
.row:nth-child(even) {
    position: relative;
    left: 30px;
}

.squareBg {
    filter: drop-shadow(1px 1px grey) drop-shadow(1px -1px grey)
        drop-shadow(-1px 1px grey) drop-shadow(-1px -1px grey);
}

.square {
    width: 50px;
    height: 50px;
    background: red;
    position: relative;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* On Point Hexagon */
    clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
    
    margin-left: 5px;
    margin-right: 5px;
}

.check {
    width: 50px;
    height: 50px;
}

.piece {
    width: 50px;
    height: 50px;
}

.black {
    background: #646970; /* Gray 50 */
}

.grey {
    background: #8c8f94; /* Gray 30 */
}

.white {
    background: #c3c4c7; /* Gray 10 */
}

.highlite {
    background: #ffbb44; /* Light Orange */
}

