:root {
        --body-bg-image: url('https://celestialsblues.neocities.org/stamps/stars3.gif');

        /* colors */
        --content: #271042;
    }

    body {
        font-family: 'Georgia', sans-serif;
        margin: 10px;
        background-color: #271042;
        /* you can delete the line below if you'd prefer to not use an image */
        background-size: 65px;
        color: #FFFFFF;
        background-image: var(--body-bg-image);
    }

    * {
        box-sizing: border-box;
}

    #container {
        max-width: 1250px;
        /* 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: #FFFFFF;
        font-weight: bold;
        /* if you want to remove the underline
you can add a line below here that says:
text-decoration:none; */
    }
    #flex {
        display: flex;
    }

    /* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
    aside {
        background-color: #170721;
        width: 200px;
        padding: 20px;
        font-size: smaller;
        margin:10px;
        /* this makes the sidebar text slightly smaller */
    }


    /* this is the color of the main content area,
between the sidebars! */
    main {
        background-color: #170721;
        flex: 1;
        padding: 20px;
        order: 2;
        margin:10px;
        }

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

    #rightSidebar {
        order: 3;
    }

    footer {
        background-color: #170721;
        width: 100%;
        height: 40px;
        padding: 10px;
        text-align: center;
        margin: 10px;
        }

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

    h1 {
        font-size: 25px;
    }

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

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