#gameContainer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}
#gameBoard {
  border: 3px solid;
  position: relative;
}
#scoreText {
  font-family: "consolas", monospace;
  font-size: 100px;
}
#resetBtn {
  font-family: "Permanent Marker", cursive;
  font-size: 22px;
  width: 100px;
  height: 50px;
  border: 4px solid;
  border-radius: 15px;
  cursor: pointer;
}
