html, body {
	width: 100%;
	height: 100%;
  	margin: 0px;
  	padding: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

html {
	flex-direction: column;
}

body {
	flex-direction: row;
	overflow: hidden;
    touch-action: none;
	/*background: radial-gradient(#efefef, #000000);*/
	background: black;
}

canvas {
	margin: auto;
	display: block;
}

* {
  -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;
}


input[type=range].sliderStyle2 {
  width: 100%;
  margin: 3px 0;
  background-color: transparent;
  -webkit-appearance: none;
}
input[type=range].sliderStyle2:focus {
  outline: none;
}
input[type=range].sliderStyle2::-webkit-slider-runnable-track {
  background: #ff0064;
  border: 2px solid #010101;
  width: 100%;
  height: 8px;
  cursor: pointer;
}
input[type=range].sliderStyle2::-webkit-slider-thumb {
  margin-top: -5px;
  width: 21px;
  height: 14px;
  background: #00ff00;
  border: 2px solid #000000;
  border-radius: 2px;
  cursor: pointer;
  -webkit-appearance: none;
}
input[type=range].sliderStyle2:focus::-webkit-slider-runnable-track {
  background: #ff0064;
}
input[type=range].sliderStyle2::-moz-range-track {
  background: #ff0064;
  border: 2px solid #010101;
  width: 100%;
  height: 8px;
  cursor: pointer;
}
input[type=range].sliderStyle2::-moz-range-thumb {
  width: 21px;
  height: 14px;
  background: #00ff00;
  border: 2px solid #000000;
  border-radius: 2px;
  cursor: pointer;
}
input[type=range].sliderStyle2::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 4px 0;
  color: transparent;
  width: 100%;
  height: 8px;
  cursor: pointer;
}
input[type=range].sliderStyle2::-ms-fill-lower {
  background: #ff0064;
  border: 2px solid #010101;
}
input[type=range].sliderStyle2::-ms-fill-upper {
  background: #ff0064;
  border: 2px solid #010101;
}
input[type=range].sliderStyle2::-ms-thumb {
  width: 21px;
  height: 14px;
  background: #00ff00;
  border: 2px solid #000000;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}
input[type=range].sliderStyle2:focus::-ms-fill-lower {
  background: #ff0064;
}
input[type=range].sliderStyle2:focus::-ms-fill-upper {
  background: #ff0064;
}
/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
how to remove the virtical space around the range input in IE*/
@supports (-ms-ime-align:auto) {
  /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
  input[type=range].sliderStyle2 {
    margin: 0;
    /*Edge starts the margin from the thumb, not the track as other browsers do*/
  }
}
