body       {
  overflow: hidden;
  font-family: monospace;
  font-weight: bold;
  margin: 0px;
  padding: 0px;
  background:black;
}
.control{

}
#data{
  position:fixed;
  bottom: 70px;
  left:   20px;
  background: white;
  border: 3px solid black;
  padding:8px;
  line-height: 14px;
  cursor:move;
  white-space: pre;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
     -moz-user-select: none; /* Old versions of Firefox */
      -ms-user-select: none; /* Internet Explorer/Edge */
          user-select: none;
}

video{
  display:none;
  width:200px;
  height:200px;
}

#canvasContainer{
  overflow:hidden;
  cursor:move;
}
#canvas {
  image-rendering: pixelated;
}
#tinyCanvas {
  image-rendering: pixelated;
  position:fixed;
  width: 200px;
  height:200px;
  top:20px;
  right:20px;
  border:3px solid black;
  cursor:move;
}

#preloadBar {
  position:fixed;
  display: block;
  left:22px;
  bottom:22px;
  width: 0px;
  height: 2px;
  background: red;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  background: white;
  outline:3px solid black;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: red;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: red;
  cursor: pointer;
}
