/* RESET CSS */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

@charset "UTF-8";
/* CSS Document */


@font-face {
  font-family: 'Lab-DJR';
  src: url('Lab-DJR.woff2') format('woff2-variations');
}


html, body {
	font-family: 'Lab-DJR', monospace;
    font-size: 50px;
	display: block;
	position: relative;
    background-color: #000;
    color: #fff;
}

body {   
max-width: 380px;
}

div {
    margin-left: 15px;
    margin-top: 50px;
    margin-bottom: 50px;
    position: absolute;
    font-variation-settings: 'bevl' 338.294, 'oval' 545.672, 'quad' 407.937, 'size' 88.8761;
}

button {
position: fixed;
display: inline-block;
margin-left: 130px;
margin-top: 50px;
height: 30px;
background-color: #bfbfbf;
border: none;
z-index: 1;
}

button:hover {
background-color: #fff;
}

#number {
    position: fixed;
    display: absolute;
    margin-left: 20px;
    margin-top: 2vh;
    z-index: 1;
}

.slidecontainer {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
margin-top: 50px;
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 95px; /* Full-width */
  height: 10px; /* Specified height */
  background: #808080; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */ 
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 10px; /* Set a specific slider handle width */
  height: 10px; /* Slider handle height */
  background: #fff; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 10px; /* Set a specific slider handle width */
  height: 10px; /* Slider handle height */
  background: #fff; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

#sizeSlider {
margin-top: 50px;
margin-left: 20px;
position: fixed;
display: absolute;
}

#shapeSlider {
margin-top: 70px;
margin-left: 20px;
position: fixed;
display: absolute;
}


@media only screen and (min-width: 768px) {
  body {
max-width: 1300px;
}

}