

 
 
  .caveat {
  font-family: "Caveat", cursive;
  font-weight: 400;
  font-style: normal;
}

.allison-regular {
  font-family: "Allison", cursive;
  font-weight: 400;
  font-style: normal;
}

.nothing-you-could-do-regular {
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-style: normal;
}

            body {
                font-family: 'Caveat', cursive;
                margin: 0;
                background-color:  #171717;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 100%;
                color: #000000;
                background-image: url('https://64.media.tumblr.com/a4b023929b585d2591808dc40fe85518/831cfccde1aab61f-b2/s1280x1920/5cf63ad10c5941d28890854380861d79fc24fb26.pnj');
        min-height: 100%;
        display: flex;
        flex-direction: column;
            }


            * {
                box-sizing: border-box;
                text-align: center;
                color: #FFFFFF;
               
            }

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

            /* 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: 1000px;
                /* 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: #4D4D4D;
                font-weight: 400;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
                text-decoration: none;
            }

        #header {
                width: 100%;
                background-color: #171717;
                /* header color here! */
                height: 100px;
                /* 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: url('https://elfie-ghoul.neocities.org/images/grunge.jpg');
                background-size: 100%;
                
            }
            
            h1 {
   -webkit-text-stroke: 1px white;
   color: white;
   text-shadow:
       3px 3px 0 #000,
     -1px -1px 0 #000,  
      1px -1px 0 #000,
      -1px 1px 0 #000,
       1px 1px 0 #000;
}
            

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #242423;
                /* 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: #FFFFFF;
                /* 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: dodgerblue;
                text-decoration: none;
            }

            
      
            

           #box{
             display:inline-block;
             align-items: center;
             justify-content: center;
             margin: 0 auto;
  }
  
               main {
                flex: 1;
                margin:0 auto;
            }

     .Starless-text-gradient {
               background: linear-gradient(90deg, #1e90ff 8%, #00bfff 33%, #9370db 60%, #dda0dd 100%); 
               color: transparent; 
               -webkit-background-clip: text; 
               background-clip: text; 
               -webkit-text-fill-color: transparent; 
            }
            
          h4            {
            color: #3d3d3d;
            text-shadow: 0 0 5px #00ff00, 0 0 8px #00008b;
  
}
            
          
        #footer {
          display:flex;
          position: static;
          justify-content: center;
                background-color: #242423;
                /* background color for footer */
                width: 100%;
                height: 60px;
                padding: 2px;
                text-align: center;
                /* this centers the footer text */
            }

            h2 {
              color: darkmagenta;
                text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
                text-shadow: 2px 1px 0px #6495ed, 4px 3px 0px #f0f8ff;
              }
  
              
            h3 {
                color: #FFFFFF;
            }

            h1 {
                font-size: 42px;
                text-align: center;
                padding: 10px, 10px, 10px, 10px;
            }

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

            /* this is just a cool box, it's the darker colored one */

            /* CSS for extras */
       #topBar {
                width: 100%;
                height: 40px;
                padding: 5px;
                font-size: smaller;
                background-color: #242423;
            }

          .mame {
  margin-left:10px;
  margin-right:10px;
  
  }
            /* 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: 900px) {
                #flex {
                    flex-wrap: wrap;
                }

              
                /* 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;
                }


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