#chess-board {
  display: flex;
  flex-wrap: wrap;
  width: 85vw;
  max-width: 600px;
  height: 85vw;
  max-height: 600px;
  border-radius: 1px;
}

#whiteRook {
  background: url(../img/rook-wh.png);
  background-size: contain;
  background-color: transparent;
}

.square {
  display: flex;
  width: 12.5%;
  height: 12.5%;
  justify-content: center;
  align-items: center;
}

.sq-white { background-color: #EAEAEA; }
.sq-black { background-color: #333; }

.chess-piece {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: grab;
  transform: translate(0, 0);
}