
* {
    box-sizing: border-box;
}

body {
  margin: 0;
  position: relative;
  background: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://file.garden/aZsEDEgnnQysAYTC/snowforest");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  filter: grayscale(100%);
  z-index: -1;
}

h1, h2 {
    color: black;
    font-family: angelicw;
    font-size: 3rem;
  text-shadow:
  -1px -1px 0 rgba(255,255,255,0.8),
   1px -1px 0 rgba(255,255,255,0.8),
  -1px  1px 0 rgba(255,255,255,0.8),
   1px  1px 0 rgba(255,255,255,0.8);
filter:
   drop-shadow(0 0 1px white)
    drop-shadow(0 0 1px white);

}
p {
    color: black;
    font-family: mom;
    font-size: 1.25em;
  text-shadow:
  -1px -1px 0 rgba(255,255,255,0.8),
   1px -1px 0 rgba(255,255,255,0.8),
  -1px  1px 0 rgba(255,255,255,0.8),
   1px  1px 0 rgba(255,255,255,0.8);
   filter:
   drop-shadow(0 0 1px white)
    drop-shadow(0 0 1px white);
}
li, footer {
    color: black;
    font-family: mom;
      text-shadow:
  -1px -1px 0 rgba(255,255,255,0.8),
   1px -1px 0 rgba(255,255,255,0.8),
  -1px  1px 0 rgba(255,255,255,0.8),
   1px  1px 0 rgba(255,255,255,0.8);
filter:
   drop-shadow(0 0 1px white)
    drop-shadow(0 0 1px white);
}
li img {
  vertical-align: middle;
  height: 1em; 
}

main ul li {
    line-height: 2; 
}

a {
    color: #444;
    text-decoration: underline dotted #666;
    text-shadow:
        -1px -1px 0 rgba(255,255,255,0.8),
         1px -1px 0 rgba(255,255,255,0.8),
        -1px  1px 0 rgba(255,255,255,0.8),
         1px  1px 0 rgba(255,255,255,0.8);
}


a:hover {
    color: black;
}

a.active-link {
    color: black;
    font-style: italic;
}


/* left */
main {
    width: 100%;
    max-width: 60em;
    height: 55em;
    overflow: auto;
    padding: 10px;
}

/* right */
#music-player {
    position: absolute;
    width: 500px;
    left: 65em;
    top: 100px;
    margin: 0px;
    z-index: 1;
    padding: 5px;
}

/* player iframe */
#iframe-player {
    display: block;
    margin: auto;
    width: 100%;
    height: 275px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
 
    filter: grayscale(100%) saturate(100%) contrast(100%) brightness(100%)
    drop-shadow(0 0 1px white)
    drop-shadow(0 0 2px white);
    transition: filter 0.6s ease;
    box-shadow:
  -1px -1px 0 rgba(255,255,255,0.8),
   1px -1px 0 rgba(255,255,255,0.8),
  -1px  1px 0 rgba(255,255,255,0.8),
   1px  1px 0 rgba(255,255,255,0.8);
}

#iframe-player:hover {
    filter: grayscale(0%) saturate(75%) contrast(90%) brightness(110%)
    drop-shadow(0 0 1px white)
    drop-shadow(0 0 2px white);;
}
li {
    list-style-position: inside;
}

li a:not(:first-of-type)::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url(../images/blackcat.gif);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    padding-right: 5px;
    padding-left: 5px;
}


footer {
	text-align: right;
	position: absolute;
	
	width: 500px;
	left: 65em;
	top: 43em;
	
	padding: 5px;
	z-index: 2;
}


* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.3) transparent;
}




