* { 
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

html, body {
  margin: 0;
  padding: 0;
}
body {
  background: #000;
}
canvas {
  display: block;
  position: absolute;
  left: 1vw;
  top: 1vh;
  width: 98vw !important;
  height: 98vh !important;
  object-fit: contain;
  image-rendering: pixelated;
  cursor: pointer;
  // &:active {
  //   opacity: 0.7;
  // }
}


nav {
  position: absolute;
  z-index: 2;
  left: 5vh;
  top: 5vh;
  font-family: sans-serif;
  color: #fff;
  font-size: 18px;
  &.bigger {
    font-size: 40px;
  }
  h1 {
    display: inline-block;
    font-size: 100%;
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: normal;
    color: #fff;
    background: #000;
    padding: 2px 4px;
    margin-left: -4px;
  }
  a {
    display: inline-block;
    color: #fff;
    background: #000;
    text-decoration: none;
    padding: 2px 4px;
    margin-left: -4px;
    &:hover {
      color: rgb(255,28,251);
    }
    &.active {
      color: rgb(18,255,0);
    }
    &.back {
      margin-top: 0.5em;
      color: #888;
      &:hover {
        color: #aaa;
      }
    }
  }
}