h1, h2, h3, h4, p, body {
    font-family: 'Helvetica', sans-serif;
    color: #FFF;
}
h1 {
    cursor: default;
    font-size: 10em;
    text-align: center;
    /*text-shadow:
		-3px -3px 0 #000,
		3px -3px 0 #000,
		-3px 3px 0 #000,
		3px 3px 0 #000;*/
}
.play-pause-wrapper {
    font-size: 1.75em;
    color: #fff;
    background-color: transparent;
    margin: auto;
    margin-top: 4em;
    text-align: center;
    position: relative;
    cursor: pointer;
}
#bars {
    height: 30px;
    left: 46%;
    margin: -20px 0 0 -20px;
    position: absolute;
    width: 40px;
}
.bar {
   background: #FFF;
    bottom: 20px;
    height: 10px;
    position: absolute;
    width: 8px;
    animation: sound 0ms -800ms linear infinite alternate;
}
.stopped .bar {
    animation-duration: 0ms !important;
}
@keyframes sound {
    0% {
       opacity: .35;
        height: 3px;
    }
    100% {
        opacity: 1;
        height: 50px;
    }
}
.bar:nth-child(1)  { left: 0px; animation-duration: 474ms; }
.bar:nth-child(2)  { left: 10px; animation-duration: 433ms; }
.bar:nth-child(3)  { left: 20px; animation-duration: 407ms; }
.bar:nth-child(4)  { left: 30px; animation-duration: 458ms; }
.bar:nth-child(5)  { left: 40px; animation-duration: 400ms; }
.bar:nth-child(6)  { left: 50px; animation-duration: 427ms; }
.bar:nth-child(7)  { left: 60px; animation-duration: 441ms; }
.bar:nth-child(8)  { left: 70px; animation-duration: 419ms; }
.bar:nth-child(9)  { left: 80px; animation-duration: 487ms; }
.bar:nth-child(10) { left: 90px; animation-duration: 442ms; }
h3 {
    cursor: default;
}
body {
    margin: 0;
    height: 100%;
    background-color: #0e1111;
    animation: colorchange 25s infinite;
    -webkit-animation: colorchange 25s infinite;
}
@keyframes colorchange {
    0%   {background: rgb(20, 0, 0);}
    33%  {background: rgb(0, 20, 0);}
    66%  {background: rgb(0, 0, 20);}
    100% {background: rgb(20, 0, 0)}
}
@-webkit-keyframes colorchange {
    0%   {background: rgb(20, 0, 0);}
    33%  {background: rgb(0, 20, 0);}
    66%  {background: rgb(0, 0, 20);}
    100% {background: rgb(20, 0, 0)}
}
span, p {
    font-size: 2em;
}
.options {
    width: 60%;
    margin: auto;
    max-width: 700px;
}
.option-1 {
    text-align: left;
}
.option-2 {
    text-align: right;
}
hr {
    margin-top: 3em;
    margin-bottom: 3em;
}
#slidecontainer {
    width: 100%; /* Width of the outside container */
}
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    margin: auto;
    height: 25px;
    background: #696969;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    cursor: pointer;
}

.slider:hover {
    opacity: 1;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #fff;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #696969;
    cursor: pointer;
}
