body{
    background-color: black;
}
#audioPlayer{
    width: 100%;
    filter: invert(100%);
    opacity: 0.3;   
}
.player-box {
    position: fixed;
    bottom: 0;
    width: 450px;
    left: 50%;
    transform: translateX(-50%);
}
.playlist-box{
    position: relative;  
} 
#playlist{
    list-style-type: none; /* hide bullet points */
    font-family: 'Courier New', monospace;
}
#playlist li{
    position: absolute;
    font-size: 25px;
}
#playlist li a{
    color: white;
    text-decoration: none;
}
#playlist li p{
    display: none;
}
#playlist .current-song a{
    animation: pulse 4s infinite;
}
#playlist .current-song p{
    display: block !important;
    font-size: 12px;
    color: #8f8f8f;
    margin: -2px 0 7px 0;
}

  
@keyframes pulse {
    0% {
      	opacity: 1;
      	font-size:25px;
    }
    50% {
      	opacity: 0.6;
      	font-size: 30px;
    }
    100% {
    	opacity: 1;
      	font-size: 25px;
    }
}


@media only screen and (max-width: 462px) {
    .player-box{
    	width: 100%;
    }
    #playlist .current-song p{
        display: block !important;
    	font-size: 10px;
    	margin: -5px 0 6px 0;
    }
}







