            :root {
                --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: Arial;
                src: url('https://electricporygon.neocities.org/fonts/ARIAL%20ROUNDED%20MT%20BOLD%20REGULAR.TTF');
            }

            @font-face {
                font-family: Arial;
                src: url('https://sadhost.neocities.org/fonts/ARIALBD.ttf');
                font-weight: bold;
            }

            @font-face {
                font-family: Arial;
                src: url('https://sadhost.neocities.org/fonts/ARIALI.ttf');
                font-style: italic;
            }

            @font-face {
                font-family: Arial;
                src: url('https://sadhost.neocities.org/fonts/ARIALBI.ttf');
                font-style: italic;
                font-weight: bold;
            }
            
            @font-face {
                font-family: Arial;
                src: url('https://electricporygon.neocities.org/fonts/ARIAL%20ROUNDED%20MT%20BOLD%20REGULAR.TTF');
                font-weight: bold;
            }

            body {
                font-family: 'Arial', sans-serif;
                margin: 0;
                background-color: #08031A;
                /* you can delete the line below if you'd prefer to not use an image */
                color: #fceaff;
                background-image: url('https://electricporygon.neocities.org/assets/bg.gif');
                background-attachment: fixed;
            }

            * {
                box-sizing: border-box;
            }

            /* 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: 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;
                padding-left: 10px;
                padding-right: 10px;
            }

            /* the area below is for all links on your page EXCEPT for the navigation */
            #container li a {
                color: #FFFFFF;
                font-weight: bold;
                text-decoration: none;
            }
            
            #container li a:hover {
                color: #ffcc00;
                text-decoration: none;
            }

            #header {
                width: 100%;
                background-color: #ffffff00;
                /* 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: url('https://electricporygon.neocities.org/assets/TitleBanner1.png');
                background-size: 100%;
                background-repeat: no-repeat;
                background-position: top center;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #003399;
                /* navbar color */
                width: 100%;
                border-radius: 0px;
                margin: 0px 0px 0px 0px; /* top, right, bottom, left */
            }

            #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: #ffcc00;
                text-decoration: none;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars. Ff you want to style them separately, create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #ffffff00;
                width: 200px;
                padding-top: 10px;
                padding-bottom: 0px;
                padding-right: 7px;
                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: #029afc00;
                border: 5px solid #00339900;
                flex: 1;
                /*padding: 15px;*/
                padding-top: 10px;
                padding-bottom: 0px;
                padding-left: 0px;
                padding-right: 0px;
                order: 2;
                text-align: justify;
                text-justify: inter-word;
            }

            /* 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;
                margin: 0px 0px 0px 0px; /* top, right, bottom, left */
                /* width: 200px; */
                /* display: flex; */
                /* align-items: center; */
                justify-content: center;
                align-items: center;
                line-height: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #003399;
                width: 100%;
                height: 40px;
                padding: 10px 10px 10px 10px; /* top, right, bottom, left */
                text-align: center;
                margin: 0px 0px 10px 0px; /* top, right, bottom, left */
            }

            h1 {
                color: #003399;
                font: Arial;
                font-style: rounded;
                text-align: center;
                margin: 10px 0px 0px 0px; /* top, right, bottom, left */
            }
            h2 {
                color: #003399;
                text-align: center;
                font-size: 25px;
                margin: 0px 0px 0px 0px; /* top, right, bottom, left */
            }

            h3 {
                color: #cc0000;
                text-align: center;
                font-size: 25px;
                margin: 0px 0px 0px 0px; /* top, right, bottom, left */
            }

            strong {
                /* this styles bold text */
                color: #003399;
                font-style: bold;
            }

/* BOXES */

            .box {
                background-color: #cc0000;
                border: 5px solid #003399;
                border-radius: 0px;
                width: 195px;
                display: inline-block;
                margin: 2px 0px 18px 0px; /* top, right, bottom, left */
                padding: 5px 0px 5px 0px;
                text-align: left;
                font-size: 16px;
                line-height: 1.25;
            }
            
            .boxvisitor {
                background-color: #003399;
                border: 5px solid #003399;
                width: 195px;
                height 45px;
                border-radius: 0px;/* TL , TR , BR , BL */
                margin: 2px 0px 15px 0px; /* top, right, bottom, left */
                padding-left: 0px;
                padding-right: 0px;
                padding-top: 4px;
                padding-bottom: 0px;
                display: flex;
                justify-content: center;
                align-items: center;
                line-height: 1;
            }
            
            .boxmainheader {
                background-color: #003399;
                width: 100%;
                height: 40px;
                border-radius: 20px 10px 0px 0px;/* TL , TR , BR , BL */
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0px 0px 0px 0px; /* top, right, bottom, left */
                padding: 0px 0px 0px 0px;; /* top, right, bottom, left */
                color: #FFFFFF;
                font: Arial;
                font-style: bold;
                font-size: 25px;
            }
            
            .boxmain {
                background-color: #ffe785;
                border-style: solid; 
                border-color: #003399;
                border-width: 0 5px 5px 5px;
                border-radius: 0px;
                flex: 1;
                display: inline-block;
                margin: 0px 0px 15px 0px; /* top, right, bottom, left */
                padding-left: 0px;
                padding-right: 20px;
                padding-top: 0px;
                padding-bottom: 0px;
                text-align: justify;
                text-justify: inter-word;
                font: Arial;
                font-size: 16px;
                color: #003399;
                line-height: 1.23;
            }
            
/* BUTTONS */
            
            .buttonblue {
              background-color: #003399;
              border: 0;
              border-radius: 20px;
              width: 195px;
              height: 40px;
              position: center;
              display: inline-block;
              margin: 4px 0px 0px 0px; /* top, right, bottom, left */
              padding-top: 0px;
              padding-bottom: 0px;
              font: Arial;
              font-style: rounded;
              font-size: large;
              font-weight: 800;
              text-align: center;
              text-decoration: none;
              color: #FFFFFF;
            }
            
            .buttonblue:hover {
              background-color: #ffcc00;
              border: 5px solid #003399;
              font-style: bold;
              color: #003399;
              cursor: pointer;
            }
            
            .buttonred {
              background-color: #cc0000;
              border: 5px solid #003399;
              border-radius: 20px;
              width: 195px;
              height: 40px;
              position: center;
              display: inline-block;
              margin: 4px 0px 0px 0px; /* top, right, bottom, left */
              padding-top: 0px;
              padding-bottom: 0px;
              font: Arial;
              font-style: rounded;
              font-size: large;
              font-weight: 800;
              text-align: center;
              text-decoration: none;
              color: #FFFFFF;
            }
            
            .buttonred:hover {
              background-color: #ffcc00;
              border: 5px solid #003399;
              font-style: bold;
              color: #003399;
              cursor: pointer;
            }
            
            .buttonyellow {
              background-color: #ffe785;
              border: 5px solid #003399;
              border-radius: 20px;
              width: 195px;
              height: 40px;
              position: center;
              display: inline-block;
              margin: 4px 0px 0px 0px; /* top, right, bottom, left */
              padding-top: 0px;
              padding-bottom: 0px;
              font: Arial;
              font-style: bold;
              font-size: large;
              font-weight: 800;
              text-align: center;
              text-decoration: none;
              color: #003399;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }
            
            .resizable-image {
              max-width: 100%;
              max-height: 100%;
              display: block;
              margin: auto;
              padding: 10px 0px 10px 0px;
            }
            
            p {
              text-indent: 2em; /* or 15px, or 5%, 2rem or 3vw */
            }
            
            ul {
              list-style-type: square;
              margin: 0px 0px 0px 15px; /* top, right, bottom, left */
              padding: 0;
            }


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

                #leftSidebar {
                    order: 1;
                }

                #rightSidebar {
                    order: 3;
                }

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

/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/*body {
  background-color: white;
  color: black;
  font-family: Verdana;
}*/