
                --content: #43256E;
            }



@font-face {
                font-family: 'Kiwi';
                src: url('/font/kiwi.woff');
            }

@font-face {
                font-family: 'Glitter';
                src: url('/font/glitter.ttf');
            }
            
            @font-face {
                font-family: 'Satisfaction';
                src: url('/font/Satisfaction.otf');
            }
            
            @font-face {
                font-family: 'Sour';
                src: url('/font/Sour.ttf');
            }



            body {
                font-family: 'Sour', sans-serif;
                margin: 0;
                background-color: #FFFAE5;
                /* you can delete the line below if you'd prefer to not use an image */
                color: #A6CCC0;
                cursor: url('/graphics/cursor.gif'),auto;
                
            }

            * {
                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 {
                max-width: 600px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
                
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }
            

            #header {
                width: 100%;
                background-color: #5e4e8c;
                /* header color here! */
                height: 150px;
                /* this is only for a background image! */
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
                background-image: var(--header-image);
                background-size: 100%;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #13092D;
                /* 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: #5686FD;
                /* 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;
            }

  
            aside {
              margin-top:200px;
                background-color: #fff;
                width: 200px;
                font-size: smaller;
                border-width: 9px;
                height: 400px;
border-style: solid;
border-image: url('https://ichigo.moe/graphics/plaid.png') 10 round;
            

            }


            main {
              margin-top:200px;
                background-color: #fff;
                flex: 1;
                padding: 20px;
                order: 2;
                border-width: 9px;
                overflow: auto;
                height: 400px;
border-style: solid;
border-image: url('https://ichigo.moe/graphics/plaid.png') 10 round;
            }
            
            #floatie{ 
position:absolute;
bottom:33%;
right:63%;
z-index: 1000;

}
            



             #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #13092D;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }
            
            a, a:visited{
  font-family:'Glitter';
  font-size: 15px;
  color: #A9E001;
  cursor: url('/graphics/cursorh.gif'),auto;
  
}

a:hover {
color: #A6CCC0;
cursor: url('/graphics/cursorh.gif'),auto;
}

            
            h2 {
              font-family:'Kiwi';
                color: #FDB8C8;
            }

            h1 {
                font-size: 25px;
                font-family:'Kiwi';
                color: #FDB8C8;
            }

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

            /* CSS for extras */

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


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

                aside {
                    width: 100%;
                }

                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
            
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
            
            .text {cursor: url('/graphics/cursort.gif');}
            
            ul.heartbullets {
  list-style: none;
}

ul.heartbullets li::before {
  /* look up 'css code symbols' for more symbols */
  content: "\02765";
}

ul.pixelbullets {
  list-style-image: url("https://sadgrl.online/images/pixels/new.gif");
}

.taped::before {
  background-image:url('/graphics/washi4.png');
  background-repeat:no-repeat;
  display:block;
  content:" ";
  position:absolute;
  height:50px;
  width:150px;
background-size:contain;
  top:180px;
  left:52%;
}








