    /* if you have the URL of a font, you can set it below */
    /* feel free to delete this if it's not your vibe */

    body {
        font-family: 'Nunito', sans-serif;
        margin: 0;
        color: black;
        background-image: url(https://archive.org/download/windows-xp-bliss-wallpaper/windows-xp-bliss-4k-lu-1920x1080.jpg);
        font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
    }

    * {
        box-sizing: border-box;
    }

    /* below this line is CSS for the layout */

    #container {
        max-width: 1300px;
        margin: 0 auto;
    }

    #container a {
        color: black;
        font-weight: bold;
    }

    #flex {
        display: flex;
    }

    #therealheader {
        background-color: white;
        padding: 3px;
        border: 4px solid blue;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    

    /* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
    aside {
        background-color: white;
        width: 200px;
        padding: 8px;
        border: 4px solid blue;
        /* this makes the sidebar text slightly smaller */
    }


    /* this is the color of the main content area,
between the sidebars! */
    main {
        background-color: white;
        flex: 1;
        padding: 20px;
        order: 2;
        border: 4px solid blue;
    }

    /* 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: white;
        /* background color for footer */
        width: 100%;
        height: 40px;
        padding: 10px;
        text-align: center;
        /* this centers the footer text */
    }

    h1,
    h2,
    h3 {
        color: black;
    }

    h1 {
        font-size: 25px
    }

    .middle {
        text-align: center;
    }

    strong {
        /* this styles bold text */
        color: black;
    }

    /* this is just a cool box, it's the darker colored one */
    .box {
        background-color: white;
        border: 4px solid blue;
        padding: 12px;
    }

    .rvbox {
        background-color: white;
        border: 4px solid blue;
        padding: 12px;
        margin-top: 10px;
    }

    .pfp {
        max-width: 100%;
        max-height: 100%;
    }

    table, td, tr, th {
        border: 2px solid blue;
        border-collapse: collapse;
        padding: 5px
    }

    .star {
        width: 120px;
        height: auto;
    }

    .center {
        margin-left: auto;
        margin-right: auto;
    }

    /* 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: 1400) {
        #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;
        }
    }