body {
    text-align: center;
    background-color: slategray;
}
h1{
    text-align: center;
    font-size: 70px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color:#011e3b;
    text-transform: uppercase;
    
}
.modal {
    display: none; /* Hidden by default */
    width: 600px; /* Full width */
    height: 100%; /* Full height */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
.rules{
    display:inline-block;
    position: absolute;
    left: 0px;
    top: 60px;
    margin: 10px;
    padding: 10px;
    border-width: 2px;
    background-color: #7dc0fa;
    width: 600px;
    text-align: left;
    font-size: 23px;
    
}

/* Styling for the checker board */
#board_container {
    display: inline-block;
    margin: auto;
    padding: 25px;
    border-color: grey;
    border-style: solid;
    border-width: 5px;
    background-image: url("Img/wood-background.jpg");
}

/* Styling for the rows on the board */
.row {
    display: flex;
    justify-content: space-evenly;
    width: 500px;

    border-color: black;
    border-style: solid;
    border-width: 1px;
}

/* Styling for the cells on the board */
.cell {
    width: 62.5px;
    height: 62.5px;
    display: inline-block;
    margin: 0;
}

.black {
    background-color: black;
}

.white {
    background-color: white;
}

/* Styling the checker pieces called "man" */
.man {
    
    margin: 6.25px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.black-man {
    background-color: black;
    background-image: url("Img/black metal.png");
    background-position: center;
    
}

.grey-man {
    background-color: grey;
    background-image: url("Img/grey metal.png");
}

.king-man {
    background-image: url("/assets/img/king_checker.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

/* Styling the selected checker */
.selected {
    border-width: 0.1vw;
    color: #255784;
    box-shadow: 0 0 10px #2196F3, 0 0 40px #2196F3, 0 0 80px #2196F3;
}

.possible {
    border-style: inset;
    border-width: 5px;
    border-color: #2196F3;
    width: 52.5px;
    height: 52.5px;
}

.out-play {
    display: inline-block;
    position: center;
    justify-content: space-evenly;
    margin: auto;
}
.score{
    display: inline-block;
    position: top;
    width: 300px;
    height: 80px;
    justify-content: space-evenly;
    margin: auto;
    font-size: 40px;
}
