body {
  margin: 0;
}

.container {
  position: relative;
  margin: 0 auto;
  text-align: center;
}

canvas {
  position: relative;
  vertical-align: bottom;
  cursor: none;
}

canvas.over {
  cursor: auto;
}

.game {
  position: relative;
  border: 1px solid black;
  display: inline-block;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
}

.game-over-modal {
  background-color: rgba(0,0,0, .8);
  border-radius: 5px;
  color: white;
  font-size: 2rem;
  display: inline-block;
  position: absolute;
  text-align: center;
  margin: auto;
  top: 35%;
  bottom: 40%;
  left: 20%;
  right: 20%;
}

.game-start-modal {
  background-color: rgba(0,0,0, .8);
  border-radius: 5px;
  color: white;
  font-size: 2rem;
  display: inline-block;
  position: absolute;
  text-align: center;
  margin: 0 auto;
  top: 40%;
  bottom: 47%;
  left: 35%;
  right: 35%;
}

.game-over {
  margin-top: 15px;
  margin-bottom: 15px;
}

.game-over:hover {
  cursor: default;
}

h1 {
  text-align: center;
}

.instructions {
  max-width: 400px;
  text-align: left;
  margin: 0 auto;
}

.play-game {
  background-color: green;
  display: inline-block;
  margin-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 5px;
  padding-top: 5px;
  border-radius: 5px;
  border-bottom: 2px solid rgb(11, 80, 10);
}

.play-game:hover {
  cursor: pointer;
}

.play-game:active {
  border-top: 0px;
  border-bottom: 2px solid green;
}

.score {
  font-size: 2rem;
}

// utility classes

.stopselect{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hidden {
  display: none !important;
}
