body{
    background: #000000;
    margin: 0%;
    font-family: monospace;
}
hr{
    border-top: #000 dashed 1px;
    border-bottom: none;
}
.section{
    background: #fff;
    outline: #000 2px solid; 
    overflow:hidden
}
.centertext {
    text-align: center;
}
.dashed{
    border-radius: 5px 5px;
    border:#000 dashed 1px
}
.margins{
    margin: 10px;
}
.padded{
    padding: 10px;
}
h1{
    font-size: 50px;
}
h2{
    font-size: 30px;
}
.outlined{
    border: black 1px solid;
    background-color: white;
}
@counter-style triangless{
    system: cyclic;
    symbols: ">";
    suffix: " "
}
li{    
    margin-bottom: 11px;
}
ul{
    margin-left: 12px;
    list-style-type: triangless;
}

/*Music Player CSS starts here*/
#musicplayer{
    background:white; /* background color of player */
    border:0; /* border around player */
    width:inherit; /* width of the player */
}

.songtitle{
    padding:10px; /* padding around song title */
    display:block;
}

.controls{
    font-size:18px !important; /* size of controls */
    background-color:#ffffff; /* background color of controls */
    text-align:center;
    width:100%;
}

.seeking{
    background-color:#ffffff; /* background color of seeking bar */
    display:flex;
    justify-content: space-evenly;
    padding:10px; /* padding around seeking bar */
}

.current-time{
    padding-right:5px;
}

.total-duration{
    padding-left:5px;
}

#musiccontrol:hover{
    cursor:pointer;
}

#musiccontrol{
    color:#000000; /* color of controls */;
    height: 20px;
    width: 20px;

}

input[type=range] {
    width: 100%;
    background-color:#ffffff; /* background color of seeking bar - make the color same as .seeking background color */
}

input[type=range]:focus {
    outline: none;
}

/* settings for chrome browsers */
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px; /* thickness of seeking track */
    cursor: help;
    background: #000000; /* color of seeking track */
}

input[type=range]::-webkit-slider-thumb {
    height: 10px; /* height of seeking square */
    width: 10px; /* width of seeking square */
    border-radius: 0px; /* change to 5px if you want a circle seeker */
    background: #000; /* color of seeker square */
    cursor: help;
    -webkit-appearance: none;
    margin-top: -4.5px; 
}

/* settings for firefox browsers */
input[type=range]::-moz-range-track {
    width: 100%;
    height: 2px; /* thickness of seeking track */
    cursor: help;
    background: #000000; /* color of seeking track */
}

input[type=range]::-moz-range-thumb {
    height: 10px; /* height of seeking square */
    width: 10px; /* width of seeking square */
    border-radius: 0px; /* change to 5px if you want a circle seeker */
    background: #000000; /* color of seeker square */
    cursor: help;
    border:none;
}
/*Music Player CSS ends here*/
