/*Hey! What are you doing here?*/
            body {
                font-family: "Courier";
                margin: 0;
                background-size: 65px;
                color: black;
                background-image: url('https://sadhost.neocities.org/images/tiles/skulls1.gif');
            }

            * {
                box-sizing: border-box;
            }


            /* 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: 800px;
                margin: 0 auto;
            }

            /*links not in nav*/
            #container a {
                color: firebrick;
            }

            #header {
                width: 100%;
                background-color: #5e4e8c;
                height: 150px;
                background-image: var(--header-image);
                background-size: 100%;
            }

            #navbar {
                height: 30px;
                background-color: black;
                width: 100%;
                border-bottom: 5px solid black;
            }

            #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: crimson;
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: white;
                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: darkgray;
                padding: 20px;
                font-size: smaller;
                width: 250px;
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                flex: 1;
                order: 2;
            }
            
            #section {
                background-color: lightgray;
                border-style: double;
                border-width: 3px;
                border-color: black;
                padding: 10px;
              }

            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;

            footer {
                background-color: dimgray;
                color: white;
                width: 100%;
                height: 40px;
                padding: 10px;
            }

            h1,
            h2,
            h3 {
                color: crimson;
            }

            h1 {
                font-size: 25px;
            }

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

            .box {
                background-color: dimgray;
                border: 3px solid black;
                padding: 10px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%px;
                height: 40px;
                font-size: smaller;
                background-color: white;
                margin-bottom: 10px;
            }


            /* 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: 700px) {
                #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;
                }
            }