body {
    margin: 0px;
    padding:0px;
    width:100%;
}
.background {
    background-image: url("img/bg.jpg");
    margin: 0px;
    padding:0px;
    width:100%;
    height: 100vh;    
    z-index: 1;
    filter: blur(20px);     
    position: fixed; 
}
.player {
    position: fixed;
    left: 50%;
    transform: translate(-50%);
    top: 10%;
    border-radius: 50px;
    width: 300px;
    height: 60vh; 
    background-color: #556b2f;
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 1px 1px 50px black;     
}
::-webkit-scrollbar {
     width: 10px;    
}
::-webkit-scrollbar-track {
    margin: 50px;
    background-color: #556b2f;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2); 
}
h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    color: whitesmoke;
    text-shadow: 1px 1px 50px black;
    padding: 1% 5%;
    margin-top: 10px;
    font-size: 24px;
}
p {
    padding: 1% 5%;
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    font-size: 12px;
    color: whitesmoke; 
    text-align: justify;   
}
#episodeImg {
    margin-left: 50%;
    transform: translate(-49%);
    margin-top: 10px;
    border-radius: 50px;
    width: 90%;
    box-shadow: 1px 1px 50px black; 
}
.episodePicker {
    position: fixed;
    top: 75vh;
    left: 50%;
    transform: translate(-50%);
    bottom: 5%;  
    width: 700px;
    height: 100px;
    z-index: 1000;   
    padding:50px;   
    overflow: hidden;     
}
p.episodePicker {
    position: fixed;
    font-size: 60px;
    width: 80%;
}   
.back {
    position: fixed;
    top: 0.7vh;
    left: 0px;
}
.forward {
    position: fixed;
    top: 0.7vh;
    right: 0px;    
}
.episodePicker img {
    width:100px;
    border-radius: 50px;
    box-shadow: 1px 1px 10px black;
    margin-bottom: 50px; 
}
.episodePicker img:hover {
    transform: scale(1.5)
}

.episodePicker img:active {
    box-shadow: none; 
}
.durationBar {
    position: fixed;
    width: 90%;
    margin: 5%;
    top: 284px;
}
.durationSlider {
    position: absolute;
    color: whitesmoke;
    border-radius: 20px;
    font-size: 40px;
    top: 235px;    
}
p.controls {
    text-align: center;
}
.controls a {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 2%;
    font-size: 40px;
    color: whitesmoke;
    text-decoration: none;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.controls a:active {
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.0);
}
a.pause {
    display: inline-block;
    font-weight: bold;
    transform: rotate(0.25turn);
}
a.stop {
    padding-left: 10px;
}
.sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
@media screen and (max-width:900px){
    .episodePicker img {
        width:50px;
    }
    div.episodePicker {
        position: fixed;
        top: 70vh;
        left: 50%;
        width: 58%;
        padding-right:0px;
        padding-left:0px;
        transform: translate(-35%);          
    }
    p.episodePicker {
        position: fixed;
        top: 73%;
        font-size: 30px;
        width:60%;
        transform: translate(-45%); 
    } 
    .back {
        position: fixed;
        top: 0%;
    }
    .forward {
        position: fixed;
        top: 0%;    
    }
}

@media screen and (max-width:600px){
    .episodePicker img {
        width:28px;
    }
    div.episodePicker {
        position: fixed;
        top: 70vh;
        left: 50%;
        width: 65%;
        padding-right:0px;
        padding-left:0px;
        transform: translate(-45%);          
    }
    p.episodePicker {
        position: fixed;
        font-size: 30px;
        width:65%;
        transform: translate(-50%); 
    } 
    .back {
        position: fixed;
        top: 1%;

    }
    .forward {
        position: fixed;
        top: 1%;  
    }
}

