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

@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,500;1,500&family=Jacquard+24&family=UnifrakturMaguntia&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap');

*{
  box-sizing: border-box;
  cursor: url(https://angeljelly.neocities.org/images/wingcursor.png), pointer;
}

body {
color: #292929;
font-family: "Afacad";
scrollbar-color: #d19c9c #fff4f4;
scrollbar-width: thin;
}

/* unvisited link */
a:link {
  color: #502565;
}

/* visited link */
a:visited {
  color: #502565;
}

/* mouse over link */
a:hover {
  color: #502565;
}

/* selected link */
a:active {
  color: #502565;
}

#page-container {
  position: relative;
  min-height: 70%;
}

#content-wrap {
  padding-bottom: 100px;    /* Footer height */
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;            /* Footer height */
}

.cloudborder {
    border-image-slice: 24 24 24 24;
    border-image-width: 20px;
    border-image-outset: 0px 0px 0px 0px;
    border-image-repeat: round round;
    border-image-source: url("https://angeljelly.neocities.org/images/cloudborder.png");
    border-style: solid;
}




@keyframes scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}


/* Scrollbar styles */
::-webkit-scrollbar {
width: 12px;
height: 12px;
background: #fff4f4;
}

::-webkit-scrollbar-track {
background: #fff4f4
border-radius: 0px;
width: 0px;
border: 1px solid #d19c9c;
}
::-webkit-scrollbar-thumb {
background: #d19c9c;
border: 1px dotted #d19c9c;
border-radius: 0px;
}