     /* user styles */

            /* styles are what change the color and sizes of stuff on your site. */

            /* these are variables that are being used in the code
            these tended to confuse some people, so I only kept 
            the images as variables */

            :root {
                --header-image: url('wp.png');
                --body-bg-image: url('https://web.archive.org/web/20091026064616/http://geocities.com/denischeung/images/star_background.gif');

                /* colors */
                --content: #01200F;
            }

            /* 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: Nunito;
                src: url("fonts/Nunito-Regular.ttf?#iefix");
            }

            @font-face {
                font-family: Nunito;
                src: url("fonts/Nunito-Bold.ttf?#iefix");
                font-weight: bold;
            }

            @font-face {
                font-family: Nunito;
                src: url("fonts/Nunito-Italic.ttf?#iefix");
                font-style: italic;
            }

            @font-face {
                font-family: Nunito;
                src: url("fonts/Nunito-BoldItalic.ttf?#iefix");
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                background-color: #08031A;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 65px;
                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: 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;
                /* this centers the entire page */
            }

            /* the area below is for all links on your page
            EXCEPT for the navigation */
            #container a {
                color: #32746d;
                font-weight: bold;
                /* if you want to remove the underline
                you can add a line below here that says:
                text-decoration:none; */
            }

            #header {
                width: 100%;
                background-color: #5e4e8c;
                /* 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: var(--header-image);
                background-size: 100%;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #01200F;
                /* 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: #9DC4C1;
                /* 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: #7E9E9B;
                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: #011502;
                width: 200px;
                padding: 20px;
                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: #1C3527;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            */ #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #01200F;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                color: #9EC5AB;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: #9EC5AB;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #01200F;
                border: 1px solid #104F55;
                padding: 10px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #01200F;
            }


             .content {
                padding: 20px;
            }


            .post {
                margin-bottom: 20px;
                background-color: #01200F;
                border: 1px solid #104F55;
                padding: 20px;
            }


            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }


                aside {
                    width: 100%;
                }


                main {
                    order: 1;
                }


                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }