            :root {
                --header-image: url('https://mothmaiden.neocities.org/img/banner1.png');
                --body-bg-image: url('https://mothmaiden.neocities.org/img/bg1.gif');
                --content: #43256E;
            }

            body {
                font-family: 'Palatino', 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: #0d403a;
                background-image: var(--body-bg-image);
                    background-position: center center;
                    background-repeat: repeat;
            }

            * {
                box-sizing: border-box;
                
            #container {
                max-width: 900px;
                margin: 0 auto;
            }

            #container a {
                color: #1b8075;
                font-weight: bold;
                text-decoration:none;
            }

            #header {
                width: 100%;
                background-color: #13092d;
                height: 150px;
                background-image: var(--header-image);
                background-position: center 45%;
                background-size: 100%;
            }

            #navbar {
                height: 40px;
                background-color: #4a7877;
                /* navbar color */
                width: 100%;
                background-image: url("https://mothmaiden.neocities.org/img/nav.png");
            }

            #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: #241445;
                /* 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: #d453af;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }

            aside {
                background-color: #5e2d7d;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
                color: 209186;
            }

            main {
                background-color: #d6acee;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            */ #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #13092D;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                color: #d453af;
            }

            h1 {
                font-size: 25px;
            }

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

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #1e1126;
                border: 1px solid #209186;
                padding: 10px;
                color: #209186;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                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: 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: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

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