           /* user styles */

            /* styles are what change the color and sizes of stuff on your site. */

            /* these are variables that are being used in the code
    these tended to confuse some people, so I only kept 
    the images as variables */

            :root {
                --header-image: url('https://sadhost.neocities.org/images/layouts/wp.jpeg');
                --body-bg-image: url('https://sadhost.neocities.org/images/tiles/purplesky.gif');

                /* colors */
                --content: #43256E;
            }

            /* if you have the URL of a font, you can set it below */
            /* feel free to delete this if it's not your vibe */

            /* this seems like a lot for just one font and I would have to agree 
    but I wanted to include an example of how to include a custom font.
    If you download a font file you can upload it onto your Neocities
    and then link it! Many fonts have separate files for each style
    (bold, italic, etc. T_T) which is why there are so many!
    
    */

@font-face {
  font-family: 'Fag';
  src: url('https://file.garden/ZyAZ489CMB3jXlAi/FaggottPin%20Strada.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
 
@font-face {
  font-family: 'Du Bell';
  src: url('https://file.garden/ZyAZ489CMB3jXlAi/dubellay.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
 
@font-face {
  font-family: 'Averia Libre';
  src: url('https://file.garden/ZyAZ489CMB3jXlAi/AveriaSerifLibre-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

            p{
              font-family: 'Averia Libre';
              }

            body {
                font-family: 'Du Bell';
                margin: 0;
                background-color: black;
                color: #6d5175;
            }

            * {
                box-sizing: border-box;
            }

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #container {
                width: 900px;
                max-width: 900px;
                position: absolute;
                top: 5%;
                left: 30%;
                  border: 10px solid transparent;
  border-image: url("https://file.garden/ZyAZ489CMB3jXlAi/Sprite-0004-16x.png") 40% / 90px / 45px round;
                margin: 0 auto;
                overflow-wrap: break-word;
                /* this centers the entire page */
            }
            
#header {
                width: 100%;
                background-color: #1b0025;
                /* header color here! */
                height: 100px;
                /* this is only for a background image! */
                background-image: url('https://file.garden/ZyAZ489CMB3jXlAi/Sprite-0001.png');
                background-repeat: no-repeat;
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
  
                background-size: 100%;
            }
            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #ED64F5;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #1b0025;
                /* navbar color */
                width: 100%;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 10px;
            }

            /* navigation links*/
            #navbar li a {
                color: #797b72;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #352639;
                width: 360px;
                padding: 20px;
                font-size: smaller;
                position: relative;
            }
aside::before {
    content: "";
    position: absolute;
    bottom: 2px;
    right: 354px;
    width: 40px;
    height: 507px;
    background-image: url('https://file.garden/ZyAZ489CMB3jXlAi/Sprite-0003-export.png');
   border-image-slice: 0 0 0 70%;   /* take a strip from the left edge of the image */
    border-image-width: 10px;
    border-image-repeat: repeat;
}

            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: rgba(50, 24, 50,1);
                flex: 1;
                padding: 20px;
                order: 2;
            }

            /* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

             #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }
            h1,
            h2,
            h3,
            h4{
                color: #797b72;
            }

            h1 {
                font-size: 25px;
                font-family: 'Fag';
            }

            strong {
                /* this styles bold text */
                color: #797b72;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #321832;
                border: 3px solid #1b0025;
                padding: 10px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }

            .crt-lines {
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
             	bottom: 0;
             	background: url("https://www.lofi.cafe/images/lines.jpg");
              z-index: 10;
              background-size: 7px auto;
              width: 100vw;
              height: 100vh;
              mix-blend-mode: overlay;
              pointer-events: none;
              opacity: 0.3;
              animation: moveDownAnimation 150s linear infinite;
}
          @keyframes moveDownAnimation {
            100% {
              background-position-y: 100%;
            }
          }

          .vignette {
             position: absolute;
              z-index: 500;
             top: -55px;
             left: -55px;
            right: -55px;
              bottom: -55px;
            box-shadow: 0 0 30px 60px rgba(0,0,0,0.4) inset;
           pointer-events: none; 
}
           /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 1100px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }
                aside::before{
                  visibility: hidden;
                }
                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }