* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #636363;
    background-image: url("../2023-music-img/bg2.gif");
    background-attachment: fixed;
    font-size:16px;
}
 .layer{
    position:fixed;
    left:0;
    right:0;
    top:0;
    bottom:0;
    opacity:0.3;
    background: linear-gradient(44deg, #e91e63, #fffde7);
}
 .player {
    position: relative;
    width: 500px;
    background: #f1f3f4;
    box-shadow: 0 50px 80px rgba(0, 0, 0, 0.25);
}
 .player .imgbx {
    position: relative;
    width: 100%;
    height: 500px;
}
 .player .imgbx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 .player audio {
    width: 100%;
    outline: none;
}

 ol {
    list-style: none;
    counter-reset: li;
}
 li::before {
    content: counter(li);
    color: #c0c0c0;
    display: inline-block;
    width: 4px;
    margin-left: -4px;
}
 li {
    counter-increment: li;cursor:pointer;
}
 ol li::before {
    content:  "." counter(li) " ";
    color: #c0c0c0;
    display: inline-block;
    width: 0.125em;
    margin-left: 30px;
    margin-right: 3px;
    text-align: right;
    direction: rtl;
}
 ol {
    list-style-position: inside;

text-transform:capitalize;
    text-indent: 2px;
    line-height:28px;
    transition: all 0.25s ease;
}
 li:hover {
    background:#eee4e6;
    transition: all 0.25s ease;
}
 li.playing {
    background:#e1d1d5;
    transition: all 0.5s ease;
}
 h3{
    font-size: 1.5rem;
    text-transform: uppercase;
    padding:0;
    margin:0;
    font-weight: normal;
    text-align:center;
    color:#424242;
}
 h3 span{
    display:block;
    font-size: 0.8rem;
    margin-top:-4px;
}
 h4{
    font-size: 0.75rem;
    text-align:center;
    padding:0;
    margin:0;
    font-weight: normal;
    color:#424242;
}
 .space{
    height:6px;
}
 .doublespace{
    height:18px;
}
 .closer {
	 display:block;
    position: fixed;
    top: 1.5vmin;
    right: 1.5vmin;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index:9999;
    opacity:0.8;
}

@media only screen and (max-width: 500px)
{
 .player {
    position: relative;
    width: 100%;
    background: #f1f3f4;
    box-shadow: none;
	 min-height:100vh;
}
 .player .imgbx {
    position: relative;
    width: 100%;
    padding-bottom:100%;
	 height: 100%;
}
 .closer {
    display:none;
}
 .closerm {
	 display:block;
    position: fixed;
    top: 1.5vmin;
    right: 1.5vmin;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index:9999;
    opacity:1;
}
} 
