body {
  background-color: black; }
  body.gameover #game-hud #gameover {
    display: block; }
  body.gameover #game-hud #scoreboard {
    display: none; }
  body.gamerunning #game-hud #scoreboard .instructions {
    display: none; }
  body.gamerunning #game-hud #scoreboard p:first-of-type {
    display: inline; }

#navigation {
  position: fixed;
  bottom: 24px;
  left: 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 15px;
  line-height: 20px;
  z-index: 1; }
  #navigation li {
    background-color: #ff4e33;
    padding: 4px 25px 0px 10px;
    color: #521910; }
    #navigation li:first-of-type {
      border-radius: 5px 5px 0px 0px; }
    #navigation li:last-of-type {
      border-radius: 0px 0px 5px 5px;
      padding-bottom: 8px; }
  #navigation input[type='checkbox'] {
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 2px;
    border: none;
    position: relative;
    bottom: -5px; }
    #navigation input[type='checkbox']:checked {
      background: #521910; }
    #navigation input[type='checkbox']:checked::after {
      content: "";
      display: block;
      position: absolute;
      top: 1px;
      left: 5px;
      height: 8px;
      width: 3px;
      border-bottom: 2px solid #ff4e33;
      border-right: 2px solid #ff4e33;
      transform: rotate(40deg); }

p + p {
  text-indent: 0; }

#cvs {
  position: fixed;
  top: 0;
  left: 0; }

#game-hud {
  position: fixed;
  color: white;
  text-transform: uppercase;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 10;
  pointer-events: none; }
  #game-hud .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 100%; }
  #game-hud .bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 30px;
    width: 100%;
    padding: 0px 75px; }
  #game-hud .instructions {
    color: grey; }
  #game-hud #scoreboard {
    top: 30px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 100%;
    padding: 0px 60px; }
    #game-hud #scoreboard p:first-of-type {
      display: none; }
  #game-hud #gameover {
    display: none; }
    #game-hud #gameover .score {
      position: relative;
      top: -4vh;
      font-family: "FormularMedium";
      font-size: 45vh;
      line-height: .85em; }

.u-show-bothTouch,
.u-show-noTouch,
.u-show-touch {
  display: none; }

html.touchevents .u-show-touch {
  display: inline; }

html.no-touchevents .u-show-noTouch {
  display: inline; }

html.no-touchevents.touchevents .u-show-bothTouch {
  display: inline; }
