body {
  font-family: sans-serif;
  font-weight: 300;
  line-height: 1.5em;
  color: #444;
  width: 100%;
  height: 100%;
}
.game-board {
  display: table;
  position: absolute;
  width: 25%;
  right: 0;
  top: 20%;
  background: #fff;
  padding: 20px;
  max-width: 400px;
  background-color: rgb(245, 230, 230);
  box-shadow: 1px 0 5px rgba(35, 20, 20, 0.79);
}

.game-board.hide {
  display: none
}

.game-board .score {
  background: #614242;
  margin: -15px;
  color: #F5F10D;
  font-weight: 600;
  padding: 10px;
  box-shadow: 0 0 3px #000;
  border-radius: 5px;
}
#gameDiv {
  width: 100%;
  height: 100%;
}
#gameInfo {
  max-height: 400px;
  overflow: scroll;
}
