#musicplayer{ 
          font-family: 'basiic';
          font-weight:bold;
          height:30px;
          width:100%;
          left:0;
          top:0;
          position:absolute;
          cursor: url('cursor/main.gif');
          margin-bottom:20px;  
          display:flex;
          background: linear-gradient(180deg,#ffa0c7 0%, white 45%, #E263a2 47%, #ffa0c7 100%);
         border:ridge 2px #fd69a5;/* border around player */
          outline: solid 2px black;  
         box-shadow: inset 13px 0px 6px -10px #f170a5, inset -13px 0px 6px -10px #f170a5, inset 0 13px 6px -10px #ffffff, inset 0px -13px 6px -10px #f170a5;
            }
         
            .songtitle{ 
            display:block;
            padding:2px; /* padding around song title */
            font-family: 'pixel';
            margin-top:4px;
            margin-right: 5px; 
            font-size:15px;
            color:black;
            letter-spacing: 1px; 
        
            background: white;/* background of song title */
            border: gray inset 1px;
               border-radius:6px;
               box-shadow: inset 13px 0 6px -10px rgb(66 66 66 / 20%), inset -13px 0 6px -10px rgb(66 66 66 / 56%), inset 0 13px 6px -10px #ffffff, inset 0 -13px 6px -10px rgb(66 66 66 / 38%);
            }
         
            .controls{
              font-size:12px; /* size of controls */
              text-align:center;
              width:100px;
              height:20px;
              text-decortation:none;
              filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white)  drop-shadow(-0.5px 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0.5px black) drop-shadow(0 0.5px black) drop-shadow(0.5px 0.5px 0 black) drop-shadow(0.5px 0.5px 0 black);
            }
         
            .controls td{
               padding-top:5px; /* padding around controls */
            }
         
            .seeking{
              width:75%;
              background: transparent;/* background color of seeking bar */
              display:flex;
              justify-content: space-evenly;
              padding:7px; /* padding around seeking bar */
               
            }
         
            .current-time{  
              padding-right:5px;
              margin-right: 3px; 
             filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white)  drop-shadow(-0.5px 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0.5px black) drop-shadow(0 0.5px black) drop-shadow(0.5px 0.5px 0 black) drop-shadow(0.5px 0.5px 0 black);
               
            }
         
            .total-duration{
              padding-left:5px;
              filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white)  drop-shadow(-0.5px 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0.5px black) drop-shadow(0 0.5px black) drop-shadow(0.5px 0.5px 0 black) drop-shadow(0.5px 0.5px 0 black);
            }
         
           .ctrlimg {
   height:16px;
   width:16px;
   }
    .ctrlimg:hover{
         cursor: url('cursor/main.gif');
    }
            
            input[type=range] {
                -webkit-appearance: none;
                width: 100%;
              background: transparent;
            }
            
            input[type=range]:focus {
                outline: none;
            }
            
            input[type=range]::-webkit-slider-runnable-track {
                width: 100%;
                 cursor: url('cursor/main.gif');
                height: 6px; /* thickness of seeking track */
                cursor: url('cursor/main.gif');
                border-radius: 6px;
                background: black; /* color of seeking track */
                border: 1px white solid;
            }
        
            input[type=range]::-webkit-slider-thumb {
              
                height: 42px; /* height of seeking square */
                 cursor: url('cursor/main.gif');
                width: 25px; /* width of seeking square */
                background-image:  url('https://files.catbox.moe/89vkdj.png'); /* image of  seeking square */
                background-size: 25px;
                -webkit-appearance: none;
                margin-top: -10px;
                
            }
            
        input[type=range].volume_slider::-webkit-slider-runnable-track { 
           cursor: url('cursor/main.gif');
            background: white; /* color of volume seeking track */
             filter:drop-shadow(-0.5px 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0 black) drop-shadow(0 0.5px 0.5px black) drop-shadow(0 0.5px black) drop-shadow(0.5px 0.5px 0 black) drop-shadow(0.5px 0.5px 0 black);  /* outline of volume seeking track */ 
            }
            
         input[type=range].volume_slider::-webkit-slider-thumb {
            background-image: url(https://file.garden/Zztv0a9yEhr5pmEq/798d7d72_original.png);/* image of volume seeking square */
            background-size: 20px;
            height: 20px; /* height of volume seeking square */
            width: 20px; 
            margin-top: -8px;
           }
         
         
        .slider_container {  
          width: 15%;       /* width of volume seeker */
          display: flex;
          justify-content: center;
          align-items: center;
        }    
        

body {
  font-family: 'superadorable', Arial, sans-serif !important;
  font-weight: lighter;
  background-size: auto;
  background-repeat: repeat;
  background-attachment: scroll;
  background-position: center top;
  background-color: #fff0f8;
  color: #ffc7de;
  padding: 20px 20px 320px 20px; 
  background-image: url('Unknown-44.jpg');
  cursor: url('cursor/maincursor.gif'), auto;
  position: relative; 
}

a {
  color: #f792b0;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #ffb6c1;
  text-decoration: none;
  transition: 0.3 ease;
  cursor: url('cursor/maincursor.gif'), auto;
}

.header-img {
  width: 0px;
  height: 180px;
  border: 1px solid black;
  margin: 42px 210px 90px 500px;
  display: block;
  border-radius: 13px;
  box-shadow: 0 0 20px #ffb6c1;
}

.main-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  padding-top: 20px;
  margin-top: -9px;
  gap: 20px;
}

.content-box1 {
  text-align: center;
  font-family: 'superadorable';
  font-weight: lighter;
  background-color: #fffdfd;
  border: 0px;
  padding: 20px;
  width: 500px;
  margin: 42px 400px 90px 340px;
  border-radius: 13px;
  box-shadow: none;
}