body {
    font-size: 18px;
    font-family: sans-serif; 
    text-align: center;
    color: rgb(245 245 245);
    background-color: rgb(15 15 15);
}
p {
    font-size: 18px;
}
#board {
    display: grid;
    grid-template-columns: repeat(8, 45px);
    width: 360px;
    margin: 20px auto;
}
.cell {
    width: 45px;
    height: 45px;
    line-height: 50px;
    font-size: 30px;
    cursor: pointer;
}

/*
.black {
    background: rgb(128 0 0); 
    color: white; 
}
.white { 
    background: rgb(222 184 135); 
}
.forbidden-black {
    background: rgb(64 0 0); 
}
.forbidden-white { 
    background: rgb(166 138 101); 
}

.white { 
  background: #eee; 
  border-left: 1px #eee solid;
  border-bottom: 1px #eee solid;
}

.black {
   background: #666; 
  border-left: 1px #666 solid;
  border-bottom: 1px #666 solid;
   color: white; 
}
.forbidden {
  background: #ffaaaa !important; 
}
*/

.white { background: #eee; color: black;}
.black { background: #666; color: white; }
.forbidden {
    font-size: small;
}
.start {
    width: 120px;
    height: 50px;
}
