              :root {
                --header-image: url('');
                --body-bg-image: url('https://savearcana.neocities.org/backgrounds/purplestars.gif');

                /* colors */
                --content: #43256E;
            }


            body {
                font-family: 'Atkinson Hyperlegible Next';
                margin: 0;
                color: #2F2573;
                background-image: url("https://savearcana.neocities.org/backgrounds/sdv.jpg");
                background-size: cover;
                background-attachment: fixed;
                /* you can delete the line below if you'd prefer to not use an 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: 1250px;
                /* 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: #FFE88F;
                font-weight: bold;
                text-shadow: 1px 1px 20px #99958B;
                text-decoration:none;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            #header {
                width: 100%;
                background-color: #BABAE3;
                /* header color here! */
                height:350px;
                /* 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%;
            }
            #headTitle {
                font-family: Mansalva;
                font-size: 50px;
                text-align: end;
                padding-top: 145px;
                color: white;
  animation: glow 1s linear infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: .1em .1em 0 transparent,
      -.1em -.1em 0 transparent;
  }
  to {
    text-shadow: .1em .1em .5em #FFE8AD,
      -.1em -.1em .5em #D4A1A1;
  }
       }

            /* 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: #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: #241445;
                width: 200px;
                padding: 20px;
            }
            
            #promptGen {
            padding: 15px 30px;
            font-size: 16px;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
                                }
    
            
      #mainDiv {
                display: flex;
                justify-content: center;
                width: auto;
                filter: drop-shadow(1.5px 1.5px 1px #6168BA);
                }

     #leftSidebar {
               background-color: #2F2573;
                 border-radius: 0px 0px 0px 25px;
                width: 255px;
                padding: 12px;
                 box-shadow: black 5px 5px 10px;
                }
                
      #elfoTitle {
                color: #FFE88F;
                font-family: "Cinzel";
                font-weight: 500;
                font-size: 22px;
                margin: 10px;
               }
      #elfoText {
                color: #FFE88F;
               }
      
      .descTitle {
                text-align: center;
                font-size: 22px;
                font-family: "Delius Unicase";
                }
      .descSeries {
                text-align: center;
                font-size: 14px;
                font-family: "Geist Pixel";
                }
      .descYear {
              text-align: center;
                }
      
    #rightSidebar {
               background-color: #2F2573;
                 border-radius: 0px 0px 25px 0px;
                width: 225px;
                padding: 12px;
                box-shadow: black 5px 5px 10px;
                }
            /* this is the color of the main content area,
    between the sidebars! */
             main {
                background-color: #9898ED;
                flex: 1;
                padding: 20px;
                order: 2;
                border-style: ridge;
                border-width: 7px ;
                border-color: #7474E7;
                 box-shadow: black 5px 7px 10px;
                  }
    
    .wrap {
                width: 201px;
                height: px;
                overflow: hidden;
    }
    
    div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

div.gallery-item {
  margin: 5px;
  width: 200px;
}

div.gallery-item:hover {
  padding: 3px;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

div.gallery-item div.desc {
  padding: 15px;
  text-align: center;
}


            /* 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 {
                width: 60%;
                height: 30px;
                margin: 16px 264px;
                padding: 5px;
                text-align: center;
                font-size: 15px;
                 box-shadow: black 5px 5px 10px;
                /* this centers the footer text */
            }

            h1 {
                color: #252573;
                font-family: Mansalva;
                font-size: 32px;
                text-shadow: #676EBF 1px 1.5px 1.2px;
            }

            h2 {
                 color: #252573;
                font-family: Mansalva;
                font-size: 35px;
                text-shadow: #676EBF 1px 1.5px 1.2px;
            }


                /* this styles bold text */
            

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #13092D;
                width: auto;
                border: 3px dashed #E0E0E0;
                font-size: 20px;
                font-family: Delius Unicase;
                text-align: center;
                padding: 10px;
                }
                
              #boxIn {
                width: 300px;
                background: #bfd1ff;
                background: linear-gradient(178deg, rgba(191, 209, 255, 0.6) 0%, rgba(255, 253, 190, 0.41) 48%, rgba(196, 186, 255, 0.52) 100%);
                border-radius: 5px 5px 5px 5px;
                box-shadow: #7474E7 0px 0px 5px 2px;
                padding: 15px;
                font-size: 15px;
                }
                
              #boxCred {
                background: rgba(19, 9, 45, 7.25);
                background: linear-gradient(178deg, rgba(19, 9, 45, 0.75) 0%, rgba(19, 9, 45, 0.75) 100%);
                width: 500px;
                border-radius: 5px 5px 5px 5px;
                box-shadow: #7474E7 0px 0px 5px 2px;
                padding: 15px;
                font-size: 15px;
                color: #9898ED;
                }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 6px;
                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: 1150px) {
                #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;
                }
            }