html {
	background-color: #FFF;
  margin:0;
  padding:0;
}
body {
	margin:0;
	padding:0;
	background-color: #FFDA2C;
}

/* BUTTON */
button {
    display: inline-block;
    border: none;
    padding: 0.5em 2em;
    margin: 0;
    text-decoration: none;
    background:rgb(105, 99, 95);
    color: #ffffff;
    font-family: sans-serif;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: background 250ms ease-in-out, 
                transform 150ms ease;
    -webkit-appearance: none;
    -moz-appearance: none;

    border-radius: 20px;
}

button:focus {
    background:rgb(95, 89, 85);
    outline: none;
}

button:hover {
    background:rgb(95, 89, 85);
}

button:active {

}

/* WIPE STYLING OF SLIDER*/
input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; /* Specific width is required for Firefox. */
  background: transparent; /* Otherwise white in Chrome */
  margin:0;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
input[type=range]:focus {
  outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}
input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;

  /* Hides the slider so custom styles can be added */
  background: transparent; 
  border-color: transparent;
  color: transparent;
  outline:none;
}


/* CUSTOM STYLING OF SLIDER*/
/* Special styling for WebKit/Blink */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 0;
  height: 30px;
  width: 30px;
  background:rgb(205, 199, 195);
  cursor: pointer;
  margin-top: -10px;
  border-radius: 15px;
}
/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
  border: 0;
  height: 30px;
  width: 30px;
  background:rgb(205, 199, 195);
  cursor: pointer;
  border-radius: 15px;
}
/* All the same stuff for IE */
input[type=range]::-ms-thumb {
  border: 0;
  height: 30px;
  width: 30px;
  background:rgb(205, 199, 195);
  cursor: pointer;
  border-radius: 15px;
}

input[type=range]::-webkit-slider-runnable-track {
  outline:none;
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: rgb(105, 99, 95);
  padding:0 5px 0 5px;
  border-radius: 5px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  outline:none;
  background: rgb(105, 99, 95);
  padding:0 3px 0 3px;
}
input[type=range]::-moz-range-track {
  outline:none;
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: rgb(105, 99, 95);
  padding:0 5px 0 5px;
  border-radius: 5px;
}
input[type=range]::-ms-track {
  outline:none;
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
  padding:0 5px 0 5px;
  border-radius: 5px;
}