 
body {
    margin: 0;
    background: url(images/aboutbackground.png) no-repeat;
    background-position: center;
    background-repeat: no-repeat; 
    background-size: cover; 
    background-attachment: fixed; 
    overflow-x: hidden;
}

/* header */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1;
}

/* music player skin by vitanica */
 
#musicplayer {
    position:fixed;
    z-index:99;
    top:0;
    margin-top:40px;
    left:0;
    margin-left: 17px;
    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:#000; /* icon background */
}
 
.roundthing img {
    margin:8px;
    width:15px;
}
 
.midline {
    width:0px;
    height:3px;
    background:#000;
    -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 #000;
    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: Chicago_12;
   font-size:15px;
}
 
#musicplayer:hover .play {
    opacity:1;
    transition-delay: .6s;
    -webkit-transition-delay: .6s;
}

/* icons */

.iconhome {
    position: absolute;
    width: 70px;
    height: 60px;
    margin-top: -215px; 
    margin-right: 15px;
    right: 0;
    text-align: center;

}

.iconhome a {
    font-family: Chicago_12;
    text-decoration: none;
}

.iconhome a:hover {
    text-decoration: underline;
}

.iconhome img {
    width: 40px; 
}

.iconblog {
    position: absolute;
    width: 70px;
    height: 60px;
    margin-top: -130px; 
    margin-right: 15px;
    right: 0;
    text-align: center;

}

.iconblog a {
    font-family: Chicago_12;
    text-decoration: none;
}

.iconblog a:hover {
    text-decoration: underline;
}

.iconblog img {
    width: 40px; 
}

.iconmusic {
    position: absolute;
    width: 70px;
    height: 60px;
    margin-top: -45px; 
    margin-right: 15px;
    right: 0;
    text-align: center;

}

.iconmusic a {
    font-family: Chicago_12;
    text-decoration: none;
}

.iconmusic a:hover {
    text-decoration: underline;
}

.iconmusic img {
    width: 40px; 
}

.iconletterboxd {
    position: absolute;
    width: 70px;
    height: 60px;
    margin-top: 40px; 
    margin-right: 15px;
    right: 0;
    text-align: center;

}

.iconletterboxd a {
    font-family: Chicago_12;
    text-decoration: none;
}

.iconletterboxd a:hover {
    text-decoration: underline;
}

.iconletterboxd img {
    width: 40px; 
}

/* about text */

#abouttxt {
    position: relative;
    margin-top: 255px;
}

#abouttxt p  {
    font-size: 12px;
}

/* image scroll */

#imagescroll {
    position: absolute;
    margin-left: 519px;
    margin-top: -237px;
    height: 420px;
    width: 20em;
}

#imagescroll .window-pane {
    box-sizing: border-box;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 30px;
    height: 100%;
    overflow-y: scroll;
}

#imagescroll img {
    width: 100%;
}

/* add my button */
#addmybutton {
    position: absolute;
    margin-left: 978px;
    margin-top: -271px;
    box-sizing: border-box;
    text-align: center;
}

#addmybutton p {
    font-family: Chicago_12;
    font-size: 12px;
}

/* stamps */

#stamps {
    position: absolute;
    margin-left: 862px;
    margin-top: -110px;
    height: 330px;
    width: 34em;
    box-sizing: border-box;
    padding-bottom: 50px;
}

#stamps .windowpane {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /
    grid-template-rows: auto auto; 
    padding: 0;
    overflow-y: scroll;
}

#stamps img {
    padding-right: 6px;
}

/* favorites */

#favorites {
    height: 250px;
    box-sizing: border-box;
    padding-bottom: 50px;
}

#favorites windowpane {
    height: 100%;
    overflow-y: scroll;
}

#favorites p {
    font-size: 12px;
}

#favorites b {
    font-family: Chicago_12;
    font-weight: bold; 
    font-size: 20px;
    box-sizing: border-box;
}

#favorites a {
    text-decoration: none;
}

#favorites a:hover {
    color: #5e9fdf;
}


