body {
    padding: 11em 0 0 0;
}
h1 {
    margin: 0;
    text-align: center;
}
p {
    margin: 0;
}
ul {
    list-style-image: url('https://i.postimg.cc/fJVt8gDT/mo60.gif');
    margin: 0;
    padding: .5em 0 .5em 2.5em;
    border-image-source: url(https://files.catbox.moe/0itn31.png);
    border-image-slice: fill 30%;
    border-image-width: 30px;
    border-image-outset: 10px;
    border-image-repeat: round; 
}
a, a:visited { 
   box-shadow: inset 0 0 0 0 #CADFB1; 
   -webkit-transition: all ease 0.5s; 
   -moz-transition: all ease 0.5s; transition: all ease 0.5s;
   color: #555;
   text-decoration-style: dotted;
   font-style: italic;
  }
  
a:hover { 
    box-shadow: inset 0 50px 0 0 #88AD66; 
    color:white;
  }
  ::-moz-selection {
    background: transparent;
    color: #CADFB1;
}
::selection {
    background: transparent;
    color: #CADFB1;
}
#container {
    display: grid;
    grid-template-columns: 55% 40%;
    column-gap: 1em;
    width: 43%;
    text-align: center;
    border: 20px solid;
    border-image-slice:68 100 64 72;
    border-image-outset: .5em .5em .5em .5em;
    border-image-repeat:stretch stretch;
    border-image-source:url("https://files.catbox.moe/w3ffrd.gif");
}
#dog {
    width:100%;
    transform: scale(1.07, 1.07);
    position:relative;
    bottom:-.35em;
}
#cat-fact {
    border-image-source: url(https://files.catbox.moe/0itn31.png);
    border-image-slice: fill 30%;
    border-image-width: 30px;
    border-image-outset: 10px;
    border-image-repeat: round; 
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: .5em;
    height: 6em;
    overflow-y: scroll;
    z-index: 99;
}
#show-fact {
  width: 15%;
  transition: 0.5s;
}
  #show-fact:hover {
    transform: rotate(-10deg)
  }
#sources {
    z-index: 9;
    position: absolute;
    left: 3em;
    top: 3em;
    border: 20px solid;
    border-image-slice:68 100 64 72;
    border-image-outset: .5em .5em .5em .5em;
    border-image-repeat:stretch stretch;
    border-image-source:url("https://files.catbox.moe/w3ffrd.gif");
    width: 250px;
    left: 90%;
    transform: translateX(-100%);
}
#sourcescontain {
    padding: .5em .2em .5em .2em;
    height: 15em;
    overflow-y: scroll;
}
        /* white theme */
        
        #musicplayer{ 
          font-family: 'basiic';
          font-weight:bold;
          height:30px;
          width:100%;
          left:0;
          bottom:0;
          position:fixed;
          display:flex;
          outline: solid 1px black;  
            }
         
            .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;
            }
         
            .controls{
              font-size:12px; /* size of controls */
              text-align:center;
              width:100px;
              height:20px;
              text-decortation:none;
            }
         
            .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; 
               
            }
         
            .total-duration{
              padding-left:5px;
            }
         
           .ctrlimg {
   height:16px;
   width:16px;
   }
    .ctrlimg:hover{
        cursor:help;
    }
            
            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%;
                height: 6px; /* thickness of seeking track */
                cursor: help;
                border-radius: 6px;
                background: black; /* color of seeking track */
                border: 1px white solid;
            }
        
            input[type=range]::-webkit-slider-thumb {
              
                height: 30px; /* height of seeking square */
                width: 20px; /* width of seeking square */
                background-image:  url('https://file.garden/Zztv0a9yEhr5pmEq/tumblr_40786d3985453eb5412348aad980ac51_3a9a1088_1280%20(1).gif'); /* image of  seeking square */
                background-size: 25px;
                -webkit-appearance: none;
                margin-top: -10px;
                
            }
            
        input[type=range].volume_slider::-webkit-slider-runnable-track { 
            background: white; /* color 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;
        }   