html,
body {
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw !important;
  height: 100vh !important;
}

#hud {
  position: absolute;
  z-index: 10;
  bottom: 5%;
  left: 5%;
}

#camera {
  display: block;
  color: white;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  padding: 0.5rem;
}

#camera div {
  display: block;
  width: 100%;
  padding: 0.3rem;
}