/* 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." */

body{
background-color: #d7c5e0;
background-image: url('https://willowbloom.neocities.org/tumblr_inline_n258vh369T1qhwjx8.png');
background-repeat: repeat;
background-size: 25%;
background-attachment: fixed;
color: #23262e;
font-family: 'Cormorant Garamond', serif;
}

#all{
width: 460px;
margin: 0 auto;
}

img{
opacity: 0.9;
}

#header{
width: 460px;
margin: 15px 0px 7px 0px;
}

h1{
font-family: "Almendra", serif;
text-align: center;
font-size: 45px;
font-weight: normal;
color: #fff;
margin: 0px; 
}

#nav{
background-color: #fff;
width: 460px;
margin-bottom: 10px;
}

ul{
text-align: center;
padding: 0px;
margin: 0px;
}

li{
list-style-type: none;
display: inline;
padding-left: 5px;
}

a{
text-decoration: none;
color: #657346;
}

a:visited{
color: #657346;
}

a:hover{
font-style: italic;
font-weight: bold;
}

a:active{
font-style: italic;
font-weight: bold;
}

#main{
background-color: #fff;
width: 430px;
padding: 15px;
text-align: justify;
}

::-webkit-scrollbar{
width: 6px;
}

::-webkit-scrollbar-track{
background-color: #1a1c16;
}

::-webkit-scrollbar-thumb{
background-color: #43473c;
}

#credit{
font-size: 12px;
position: fixed;
bottom: 0;
right: 0;
}

#credit a{
text-decoration: none;
color: #fff;
}

#credit a:visited{
color: #fff;
}

#credit a:hover{
font-style: italic;
font-weight: bold;
}

#credit a:active{
font-style: italic;
font-weight: bold;
}

.topscroll { 
    grid-area: topscroll; 
    background-image: url('https://willowbloom.neocities.org/0011ace89f00fedf690e6769290f21e3.gif');
    border: 1px black;
    border-radius: 15px;
}
 
.topscroll marquee span{
    font-style: italic;
    color: white;
    filter: drop-shadow(1px 1px 0 rgb(122, 122, 122)) drop-shadow(-1px 1px 0 rgb(122, 122, 122)) drop-shadow(0 -1px 0 rgb(122, 122, 122)) drop-shadow(1px 0 rgb(122, 122, 122));
}

#doll{
  transition: ease-in-out 1s;
}
 
#doll:hover{
  transform: rotate(-5deg);
