html,
body,
#game-content {
  width: 100%;
  height: 100%;
  background-color: white;
  color: black;
}

.cell,
.bttn {
  position: absolute;
  border: 1px solid black;
  text-align: center;
}

.bttn {
  position: fixed;
  background-color: white;
  bottom: 8px;
}

.cell.visible,
.bttn.selected {
  background-color: lightgray;
}


.cell.win.mineFlag,
.cell.win.mine {
    background-color: greenyellow;
}

.gameOver {
  position: absolute;
  width: 100vw;
  height: 100vh;
}
