
            /* 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('/siteassets/Site-background.webp');
                --body-bg-image: url('/siteassets/Site-background.webp');
                
                /* colors */
                --content: #43256E;
                --article-background: #160b1e;
                --main: #06000c;
                /*bio table colors*/
  --th-color: grey;
  --td-odd-color: #160b1e;
  --td-even-color: #160b1e;
            }

            /* 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: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
            }

            @font-face {
                font-family: Lora;
                src: url('https://shattereddreams.neocities.org/fonts/Lora.ttf');
            }

            @font-face {
                font-family: Ondine;
                src: url('https://shattereddreams.neocities.org/fonts/Ondine.ttf');
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                background-color: #06000c;
                background-repeat: no-repeat;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: contain;
                color: #edebed;
                background-image: var(--body-bg-image);
            }

            * {
                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: 900px;
                /* 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 */
            #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; */
            }

            #header {
                width: 100%;
                background-color: #160b1e;
                /* 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: #06000c;
                /* 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: #c0a1ff;
                /* 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: #ffff;
                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: #241445;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: var(--main);
                flex: 1;
                padding: 20px;
                order: 2;
                border: dotted;
                border-width: 2px;
                border-color: white;
            }

            /* 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;
            }

            footer {
                background-color: #06000c;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }


            /*INFOBOX*/
main img,
/*might as well limit the portrait image too actually*/
.bio img {
  max-width: 100%;
  display: block;
  margin: auto;
}

/*character bio floats to the right!*/
.bio {
  float: right;
  border: 1px solid white;
  margin-left: 16px;
  width: 400px;
  max-width: 100%;
  /*bg color isnt shown unless your portrait image is transparent*/
  background: black;
}
/*clearfix, if you don't know what that means don't worry about it*/
.bio::after {
  content: "";
  clear: both;
  display: table;
}
/*for the table, overflow makes it scrollable in case you write a lot*/
.bio table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}
.bio th,
.bio td {
  padding: 0.4em;
  /*uhhhh i think i added this in case you write multi-line answers*/
  vertical-align: top;
}
/*i didn't use table headings, but you might!*/
.bio th {
  background: var(--th-color);
  color: white;
    font-family: 'Lora';      
              font-weight: normal;
  width: 100%
}
.bio td {
  font-size: small;
  /*if your entries get cut off, itll show the text with a "..." at the end*/
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.bio td:first-of-type {
  font-weight: bold;
  /*can change this to be 50% if you want the columns to be even*/
  width: 35%;
}
/*alternate the colors~*/
.bio tr:nth-child(odd) {background: var(--td-odd-color);}
.bio tr:nth-child(even) {background: var(--td-even-color);}


/*headers*/
            h1 {
              font-family: 'Ondine';
              font-weight: normal;
              color: #c0a1ff;
                font-size: 40px;
            }
            
            h2 {
              font-family: 'Lora';      
              font-weight: normal;
               color: #fff;
               background-color: #533eb5;
              font-size: 20px;
            }
              .blue {
              font-family: 'Lora';      
              font-weight: normal;
               color: #fff;
               background-color: #181a8f;
              font-size: 20px;
            }
            .white {
              font-family: 'Lora';      
              font-weight: normal;
               color: #fff;
               background-color: #787880;
              font-size: 20px;
            }
             .green {
              font-family: 'Lora';      
              font-weight: normal;
               color: #fff;
               background-color: #184d19;
              font-size: 20px;
            }
             .yellow {
              font-family: 'Lora';      
              font-weight: normal;
               color: #fff;
               background-color: #968927;
              font-size: 20px;
            }
             .red {
              font-family: 'Lora';      
              font-weight: normal;
               color: #fff;
               background-color: #750f22;
              font-size: 20px;
            }
             h3 {
              font-family: 'Lora';      
              font-weight: normal;
               color: #fff;
              font-size: 25px;  
            }

          strong {
                /* this styles bold text */
                color: #ED64F5;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #13092D;
                border: 1px solid #fff;
                padding: 10px;}
           
           /*Button links*/
           
            
           .button {
  position: relative;
  width: 400px; 
  max-width: 100%;
           
            }
            
            .button img {
  width: 100%;
  height: auto;
}

.button .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers the button perfectly */
  background-color: #555;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  
}
            
            .redhighlighted:hover {
               filter: drop-shadow(5px 5px 10px red);
              
            }
            
            .redoutlined:hover{
                  outline: 2px solid red;
            }
           
           .whitehighlighted:hover {
               filter: drop-shadow(5px 5px 10px white);
              
            }
            
            .whiteoutlined:hover{
                  outline: 2px solid white;
            }
           .bluehighlighted:hover {
               filter: drop-shadow(5px 5px 10px blue);
              
            }
            
            .blueoutlined:hover{
                  outline: 2px solid blue;
            }
           .greenhighlighted:hover {
               filter: drop-shadow(5px 5px 10px green);
              
            }
            
            .greenoutlined:hover{
                  outline: 2px solid green;
            }
           .yellowhighlighted:hover {
               filter: drop-shadow(5px 5px 10px yellow);
              
            }
            
            .yellowoutlined:hover{
                  outline: 2px solid yellow;
            }
          
          .blueglow {
  color: #fff;
  text-shadow: 5px 5px 10px blue; /* x-offset, y-offset, blur-radius, color */
}
          .whiteglow {
                color: #fff;
                text-shadow: 5px 5px 10px white; /* x-offset, y-offset, blur-radius, color */
              }
          .greenglow {
                color: #fff;
                text-shadow: 5px 5px 10px green; /* x-offset, y-offset, blur-radius, color */
              }
         .yellowglow {
                color: #fff;
                text-shadow: 5px 5px 10px yellow; /* x-offset, y-offset, blur-radius, color */
              }
          .redglow {
                color: #fff;
                text-shadow: 5px 5px 10px red; /* x-offset, y-offset, blur-radius, color */
              }
            .storyimg {
              height: 100px;
            }
         
               
            .br {
              border-radius: 10px;
            }
            
            .centered {
    text-align: center;}
 
 .noleft {
    margin-left: 0}
           
            /*container box*/
           article {
                background-color: var(--article-background);
                padding: 1em;
                border: 1px solid #fff;
                border-radius: .3em;
                margin-bottom: 1em;
                width: 500px;
                max-width: 100%

}

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }


            /* 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: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                /* 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;
                }
            }