/* Body */
html, body {
  margin: 0;
  padding: 0;
  background: #111;
  height: 100%;
  width: 100%;
  overflow: hidden;
  touch-action: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Game */
.gameContainer {
  margin: 0 auto;
  padding: 0;
  position: relative;
  font-family: 'Orbitron', sans-serif;
}

#gameCanvas {
  margin: 0 auto;
  display: block;
  background: #000;
  z-index: 1;
}

/* Menu */
#menuButton {
  position: absolute;
  top: 0;
  left: .25em;
  z-index: 999;
  font-weight: 100;
  background: transparent;
  border: none;
  color: #ffffff55;
  width: min-content;
  height: min-content;
  font-size: 3em;
  padding: .625em;
}

#menuButton:hover {
  color: #ffffff88;
}

#pauseContainer {
  position: absolute;
  bottom: 6em;
  left: 50%;
  transform: translateX(-50%);
  width: min-content;
  display: none;
  z-index: 10;
}

#pauseContainer button, #pauseContainer select {
  width: 14em;
  height: 3em;
  border-radius: .5em;
  color: #fff;
  background-color: #000;
  border: .125em solid #fff;
  font-weight: bold;
  font-size: 1.125em;
  z-index: 999;
  font-family: sans-serif;
  text-align: center;
}

#pauseContainer button:hover, #pauseContainer select:hover {
  background-color: #222;
  cursor: pointer;
}

/* Controls */
.controls {
  width: 80vh;
  height: 50vh;
  position: absolute;
  left: 0.5rem;
  top: 50%;
  display: none;
}
.topControls, .bottomControls {
  width: 100%;
  height: 50%;
  padding-bottom: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.controls .button {
  width: 33%;
  height: 100%;
  margin: 0 auto;
  background: rgba(30, 30, 30, .5);
  border: 2px solid #000;
  border-radius: 0.5rem;
  font-size: 2.5rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
