            /* 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: LibreFranklin;
                src: url('Fonts/LibreFranklin-Regular.ttf');
            }

            @font-face {
                font-family: LibreFranklin;
                src: url('Fonts/LibreFranklin-Bold.ttf');
                font-weight: bold;
            }

            @font-face {
                font-family: LibreFranklin;
                src: url('Fonts/LibreFranklin-Italic.ttf');
                font-style: italic;
            }

            @font-face {
                font-family: LibreFranklin;
                src: url('Fonts/LibreFranklin-BoldItalic.ttf');
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'LibreFranklin', sans-serif;
                margin: 0;
                background-color: #183167;
                opacity: 1;
                background-image:  radial-gradient(#4588f7 1.25px, transparent 1.25px), radial-gradient(#4588f7 1.25px, #183167 1.25px);
                background-size: 50px 50px;
                background-position: 0 0,25px 25px;
                
            }

            * {
                box-sizing: border-box;
            }


            #container {
                max-width: 900px;
                margin: 0 auto;
            }


            #container a {
                color: #F0F9FF;
                font-weight: bold;
            }

            #header {
                width: 100%;
                height: 150px;
            }

            #navbar {
                height: 40px;
                background-color: #13092D;
                /* navbar color */
                width: 100%;
                border-radius: 25px 0px 0px 0px;
            }

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

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

            /* navigation links*/
            #navbar li a {
                color: #ED64F5;
                /* 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: #0E1C40;
                width: 250px;
                min-width: 150px;
                padding: 20px;
                font-size: smaller;
                border-radius: 0px 25px 25px 0px;
                /* this makes the sidebar text slightly smaller */
            }


            main {
                background-color: #456185;
                flex: 1;
                padding: 20px;
                order: 2;
                border-radius: 25px 0px 0px 25px;
            }

            /* 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! */

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #0E1C40;
                width: 100%;
                height: 50px;
                margin-bottom: 20px;
                text-align: center;
                border-radius: 25px;
            }
            
            p {
                color: #EFF6FF;
                font-size: 12px;
              }
              
            h2,
            h3,
            h4 {
                color: #EFF6FF;
            }

            h1 {
                color: #B8E6FE;
                text-align: center;
                text-transform: uppercase;
                font-size: 25px;
                background-color: #0E1C40;
                border-radius: 10px 0 10px 0;
            }
            
           h3 {
                font-size: 12px;
                padding-top: 15px;
            }

            strong {
                /* this styles bold text */
                color: #EFF6FF;
            }
            li::marker {
            content: '🡦 ';
            color: #EFF6FF;
            font-size: 1.2em;
            }

            .box {
                background-color: #0E1C40;
                border: 2px dashed #EFF6FF;
                padding: 5px;
            }

            /* 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;
                }
            }
            
/*okay so this should be the char boxes*/

.charbox {
  justify-content: center;
  align-items: center;
  width: 700px;
  height: auto;
}

  .charlink {
  width: 200px;
  height: 500px;
  margin: 10px;
  display: inline-block;
  }

    .charlink img {
    border-style: dotted;
    border-radius: 40px;
    overflow: hidden;
    }
    
    /*this should make it so it changes on hover???*/
    
    .charlink:hover img:first-child{display:none}
    .charlink:hover img:last-child{display:inline-block}
    .hide {display:none}

/*selection grid*/

.bookshelf {
  display: flex;
}
  .bookshelf div {
  border-style: dashed;
  border-color: #456185;
  background-color: #0E1C40;
  color: #0E1C40;
  margin: 10px;
  }
  
  .bookshelf a {
  line-height: 50%;
  text-align: center;
  text-decoration: none;
  }
  
  .bookshelf div img {
  width: 205px;
  height: auto;
  }

/*hillhouse's washi tape*/

.taped::before {
  background-image:url('Pics/pattern-honeycomb.png');
  background-repeat:no-repeat;
  display:block;
  content:" ";
  position:absolute;
  height:50px;
  width:150px;
  background-size:contain;
  top:-20px;
  left:40%
}

/*dropdown thing*/
details {
  background-color: #0E1C40;
  margin: 1em;
  padding: 1em;
  width: 95%;
}

details > summary {
  cursor: pointer;
  color: #B8E6FE;
}

/* liv's incredible randomiser*/
.rando img {
  display: none; /* hide by default */
}