body {
    margin: 0;
    background: url(images/quotesbg.png) no-repeat;
    backdrop-filter: blur(2px);
    background-position: center;
    background-repeat: no-repeat; 
    background-size: cover; 
    background-attachment: fixed; 
    overflow-x: hidden;
}

/* door */
#door {
    position: fixed;
    width: 30px;
    height: auto;
    margin-left: 10px;
    margin-top: 10px;
}

/* wrapper */
.wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 700px;
    height: auto;
}

/* chest */
.wrapper #chest {
    width: 800px;
    height: 500px;
    margin-top: 100px;
    margin-left: -60px;
    image-rendering: pixelated;
}

/* content */
.wrapper .content {
    position: absolute;
    z-index: 1;
    width: 400px;
    height: 193px;
    margin-top: -347px;
    margin-left: 151px;
    text-align: center;
    overflow-y: scroll;
}

.wrapper .content img {
    width: 70%;
    height: auto;
    margin-bottom: 15px;
    
}

/* music player skin by vitanica */
 
#musicplayer {
    position:fixed;
    z-index:99;
    top:0;
    margin-top:17px;
    left:0;
    margin-left: 50px;
    display:flex;
    -webkit-transition:all .7s ease;
    -moz-transition:all .7s ease;
    -o-transition:all .7s ease;
    transition:all .7s ease;
}
 
#musicplayer > *, .play > * {align-self:center;-webkit-align-self:center}
 
.roundthing {
    width:31px;
    height:31px;
    border-radius:100%;
    background:#51281a; /* icon background */
}
 
.roundthing img {
    margin:8px;
    width:15px;
}
 
.midline {
    width:0px;
    height:3px;
    background:#51281a;
    -webkit-transition:all .4s ease;
    -moz-transition:all .4s ease;
    -o-transition:all .4s ease;
    transition-delay: .9s;
    -webkit-transition-delay: .9s;
}
 
#musicplayer:hover .midline {
    width:20px;
    transition-delay:0s;
    -webkit-transition-delay:0s;
}
 
.play {
    display:flex;
    min-width:124px;
    height:31px;
    text-align: left;
    padding:0px 10px;
    background: #eee;
    border: 3px solid #51281a;
    color:#000;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition-delay: .4s;
    -webkit-transition-delay: .4s;
}
 
.music-controls, .music-controls > * {
   user-select:none;
   -webkit-user-select:none;
   width:11px;
   font-size:11px;
   cursor:pointer;
}
 
.pausee {display:none;}
 
.playtext {
   margin-left:8px;
   font-family: 'Times New Roman';
   font-size:15px;
    font-style: italic;
}
 
#musicplayer:hover .play {
    opacity:1;
    transition-delay: .6s;
    -webkit-transition-delay: .6s;
}