*{
    padding: 0;
    margin: 0;
}
            body {
    background-image: url(https://sadhost.neocities.org/images/tiles/wall_06.gif);
    display: flexbox;
    margin: 0;
    margin-bottom: 10%;
            }

            header {
                background-color: lightgrey;
                margin-top: 3px;
                margin-bottom: 3px;
            }
            #container {
                width: 70%;
                max-width: 2000px;
                /* 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: red;
                /* 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-image: url(https://sadhost.neocities.org/images/tiles/bgif100.gif);
                width: 200px;
                padding: 20px;
                font-size: smaller;
                margin: 5px;
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-image: url(https://sadhost.neocities.org/images/tiles/sandy.jpg);
                color: black;
                flex: 1;
                padding: 20px;
                order: 2;
                margin-top: 5px;
            }

            .headerArea {
                background-color: grey;
            }

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


            h1,
            h2,
            h3 {
                color: black;
            }

            h1 {
                font-size: 25px;
                width: 100%;
            }

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

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

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }

            ul li {
                list-style: none;
                text-indent: 0px;
                margin: 3px;
            }

            img {
        margin-left: auto; 
        margin-right: auto;
        width: 30%;
        padding-left: 19px;
        padding-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: 1500px) {
                #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: 3;
                }

                #rightSidebar {
                    order: 2;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
