            :root {
                --header-image: url('newbanner.png');
                --body-bg-image: url('redtile.jpg');

                /* colors */
                --content: green;
            }


            @font-face {
                font-family: Nunito;
                src: url('');
            }

            @font-face {
                font-family: Nunito;
                src: url('');
                font-weight: bold;
            }

            @font-face {
                font-family: Nunito;
                src: url('');
                font-style: italic;
            }

            @font-face {
                font-family: Nunito;
                src: url('');
                font-style: italic;
                font-weight: bold;
            }
            
            

            body {
              background-image: url('redtile.jpg');
              background-color: #cccccc;
              background-repeat: repeat;
              background-size: auto;
              font-family: monospace;
              border-style: outset;
              border-width: 2px;
              border-color: #fff #000 #000 #fff;
              padding: 0  0 0 0;
              margin: 100px 350px 100px 350px;
              background-color: rgb(69, 69, 69, 12);
}
            *{
                box-sizing: border-box;
            }
            

            #container {
                max-width: 900px;
                margin: 0 auto;
            }

            #container a {
                color: gray;
                font-weight: bold;
            }

            #header {
                width: 100%;
                background-color: gray;
                height: 150px;
                background-image: var(--header-image);
                background-size: 100%;
                border-style: outset;
                border-width: 2px;
              border-color: #fff #000 #000 #fff;
            }

            #navbar {
                height: 40px;
                background-color: lightgray;
                width: 100%;
                border-style: outset;
                border-width: 2px;
              border-color: #fff #000 #000 #fff;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 10px;
            }

            #navbar li a {
                color: red;
                font-weight: 800;
                text-decoration: none;
            }

            #navbar li a:hover {
                color: blue;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }

            aside {
                background-color: lightgray;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                border-style: outset;
                border-width: 2px;
              border-color: #fff #000 #000 #fff;
            }

            main {
                background-color: gray;
                flex: 1;
                width: 100%;
                padding: 20px;
                order: 2;
                border-style: outset;
                border-width: 2px;
              border-color: #fff #000 #000 #fff;
            }

            / #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: lightgray;
                width: 100%;
                height: 100px;
                padding: 10px;
                text-align: center;
                border-style: outset;
                border-width: 2px;
              border-color: #fff #000 #000 #fff;
            }

            h1,
            h2,
            h3 {
                color: black;
            }

            h1 {
                font-size: 25px;
            }

            .box {
                background-color: gray;
                border: 1px solid #ED64F5;
                padding: 10px;
            }


            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: lightgray;
            }


            /*media stuff under heree lolz*/

            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }
                
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
            
  