@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
html, body {
  height: 100%;
}

body {
  margin: 0px auto;
  padding: 0;
  margin: 100px;
  background-color:#010d29;
  color:#fff;
  display: flex;

     justify-content: center;
     align-items: center;
}

#sketch-container {
display: block;
}
.sketchCanvas {}

.footer{
position: fixed;
bottom: 2%;
margin: 0px auto;
width: 100%;
height:auto;
text-align:center;
font-family: 'Roboto', sans-serif;
text-transform:uppercase;
font-size: 12px;
color:#999;
}

a
{text-decoration: none;color:#999;}
a:hover {text-decoration: underline; color:#f60;}
.title
{
  font-family: 'Roboto', sans-serif;
  text-transform:uppercase;
  font-size: 24px;
  font-weight: bold;
margin: 10px;

}


.desc-text{
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  margin: 10px;

}
.divider
{width :40%; height: auto; color:#999;}

.pause_btn{background-color: #fff;}
  .play_btn{background-color: #f60;}

/* The slider itself */
.slider-text
{
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
margin: 15px 5px;
color:#00aeef;


}
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 150px; /* Full-width */
  height: 10px; /* Specified height */
  background: #fff; /* 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;
  margin:15px 5px;
}

/* 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: 15px; /* Set a specific slider handle width */
  height: 15px; /* Slider handle height */
  background: #f60; /*  background */
  cursor: grab; /* Cursor on hover */
}


.slider::-moz-range-thumb {
  width: 15px; /* Set a specific slider handle width */
  height: 15px; /* Slider handle height */
  background: #f60; /* background */
  cursor: grab;; /* Cursor on hover */
}


.dropdown {height: 25px; width:150px;margin:10px 5px;text-align: left;}
.colorSelect{height: 50px; width:150px;margin:10px 5px;}
