
            :root {
                --header-image: url('https://file.garden/ZvZ4vyE050beWbUU/Neocities/Banner/EliOffline.gif');
                --body-bg-image: url('https://file.garden/ZvZ4vyE050beWbUU/Neocities/Backgrounds/stars%204.gif');

                /* colors */
                --content: #43256E;
            }

            /* 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: Pokeds; /* set name */
  src: url(https://file.garden/ZvZ4vyE050beWbUU/Neocities/fonts/pokeds.woff); /* url of the font */
  font-color: white;
           }
      

            body {
                font-family: 'pokeds';
                font-size: 10px;
                margin: 0;
                background-color: #08031A;
                /* you can delete the line below if you'd prefer to not use an image */
                color: #fceaff;
                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: 1200px;
                /* 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: 1200;
                background-color: #5e4e8c;
                /* header color here! */
                height: 160px;
                /* 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%;
            }

            .main {
                background-color: black;
                border: 1px;
                width: 1000px;
                height: 900px;
                border-color: white;
                border-style: solid;
                padding: 20px;
                margin: auto;
            }
            


            h1,
            h2,
            h3 {
                color: white;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: white;
            }
            li a {
              color: white;
            }
            a {
              color: white;
            }

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