@font-face {
                font-family: "VT323", monospace;
                src: url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
                font-weight: 400;
                font-style: normal;
            }
            
            /* background, font color */
            body {
                font-family: 'VT323', monospace;
                margin: 0px;
                background-color: #120904;
                color: #E5870A;
            }

            * {
                box-sizing: border-box;
            }

            /* entire website */
            #container {
                max-width: 700px;
                font-size: 20px;
                margin: 0 auto;
                /* this centers the entire page */
            }

            /* all links on page EXCEPT for the navigation */
             #container a {
                color: #FBA736;
                font-weight: bold;
            }

            /* header */
            #header {
                width: 100%;
                color: #FBA736;
                background-color: ;
                padding-left: 20px;
                font-size: 50px;
            }

            #flex {
                display: flex;
            }

            /* sidebar (navigation) */
            aside {
                background-color: ;
                width: 200px;
                padding-left: 20px;
                padding-right: 20px;
                font-size: ;
            }

            aside ul {
                padding: 0;
                margin: 10;
                list-style-type: none;
            }

            aside li {
                padding-top: 10px;
            }

            /* navigation links */
            aside li a {
                text-decoration: none;
                color: #FBA736;
                font-weight: bold;
            }
            aside li a:hover {
                color: ;
                text-decoration: underline double;
            }

            /* main content */
            main {
                background-color: ;
                flex: 1;
                padding-left: 20px;
                padding-right: 20px;
                order: 2;
            }

            #rightSidebar {
                order: 3;
            }

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

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

            h1 {
                font-size: 25px;
            }

            strong {
                color: #E5870A;
            }

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


            /* MEDIA QUERY */

            @media only screen and (max-width: 600px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                /* order of items adjusted for responsiveness */
                main {
                    order: 1;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
