/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

<style>
body {
background:#f0f0f0 url(https://i.pinimg.com/736x/39/e6/f9/39e6f9a4792bd03d3c92204fceddef33.jpg) fixed;
font-family:calibri, arial;
font-size:10px;
line-height:11px;
letter-spacing:1px;
color:#A38985;
}
a { color:#9D7956; text-decoration:none; }
a:hover { color:#555; }
b { color:#E4AFA7; }
img { border:0; }
.credits {text-align:center;}
::-webkit-scrollbar-thumb {
background-color:#fff;
border-radius:0px;
border:1px solid #9D7956;
}
::-webkit-scrollbar {
width:5px;
height:0px;
background:transparent;
}
#layout {
width:540px;
margin:20px auto;
}
#header {
height:60px;
display:flex;
align-items:center;
justify-content:center;
}
.sitename a {
font:26px 'doto';
text-transform:uppercase;
letter-spacing:5px;
color:#E02650;
border-bottom:2px dotted #ddd;
padding-bottom:4px;
}
.sitename a:hover { color:#A38985; }
#navigation {
text-align:center;
margin-bottom:8px;
}
.navi a {
display:inline-block;
background:#E4D1CE;
font:9px 'silkscreen', arial;
text-transform:uppercase;
padding:1px 5px 2px;
margin-bottom:4px;
letter-spacing:1px;
color:#fff;
border-radius:10px;
border:1px solid #E4AFA7;
}
.navi a:hover { color:#A38985; }
#main {
display:flex;
gap:0;
}
#left {
width:180px;
padding:6px;
}
#content {
width:360px;
padding:6px;
}
.box {
border-width:8px;
border-style:solid;
border-image:url("https://64.media.tumblr.com/7aec0ae36d68b36def9be87357aea92a/b2756e0706eb2c30-11/s75x75_c1/f85ea5e4367db423531b3f112f4454750ea9a53e.pnj") 8 fill round;
margin-bottom:8px;
}
.scrollbox {
height:100px;
overflow:auto;
overflow-x:hidden;
border-width:8px;
border-style:solid;
border-image:url("https://64.media.tumblr.com/7aec0ae36d68b36def9be87357aea92a/b2756e0706eb2c30-11/s75x75_c1/f85ea5e4367db423531b3f112f4454750ea9a53e.pnj") 8 fill round;
margin-bottom:8px;
}
.title {
font:bold 10px calibri;
color:#E4AFA7;
text-transform:uppercase;
letter-spacing:5px;
border-bottom:1px dashed #E4D1CE;
margin-bottom:4px;
}
.extralinks a {
display:inline-block;
width:100%;
background:#E4D1CE;
font:13px 'pixelify sans', arial;
letter-spacing:3px;
color:#fff;
text-align:center;
margin-bottom:1px;
}
.extralinks a:hover { color:#A38985; }
textarea {
font:10px calibri, arial;
letter-spacing:1px;
color:#444;
}
@media (max-width:600px) {
body {
font-size:11px;
line-height:13px;
}
#layout {
width:100%;
margin:10px auto;
}
#header {
height:auto;
padding:10px 0;
}
.sitename a {
font-size:20px;
letter-spacing:3px;
}
#main {
flex-direction:column;
}
#left,
#content {
width:100%;
padding:6px;
}
img {
max-width:100%;
height:auto;
display:block;
margin:0 auto;
}
.scrollbox {
height:auto;
max-height:200px;
}
}
</style>

  .player {
        width:fit-content;
        border: #CECECE solid 2px;
        border-radius: 100px;
        margin-left:auto;
        margin-right:auto;
      background: linear-gradient(0deg, rgba(205,205,205,1) 0%, rgba(230,230,230,1) 30%, rgba(255,255,255,1) 100%); 
      padding:5px;
    }
 



.seek_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 6px;
  background: #e4d5dc;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  border-radius: 8px;
}

.seek_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 8px;
  height: 8px;
  background: white;
  cursor: pointer;
  border-radius: 50%;
  border:1px solid #cecece;
  padding-top:3px;
  position:relative;
  bottom:3px;
}