                 :root {
                --header-image: url('https://taxianjunis.neocities.org/wp.png');
                --body-bg-image: url('https://taxianjunis.neocities.org/Artboard%2056.png');

                /* colors */
                --content: #43256E;
            }

            /* if you have the URL of a font, you can set it below */
            /* feel free to delete this if it's not your vibe */

            /* this seems like a lot for just one font and I would have to agree 
    but I wanted to include an example of how to include a custom font.
    If you download a font file you can upload it onto your Neocities
    and then link it! Many fonts have separate files for each style
    (bold, italic, etc. T_T) which is why there are so many!
    
    */

            @font-face {
                font-family: Poppins;
                src: url('https://taxianjunis.neocities.org/fonts/Poppins-Regular.ttf');
            }

            @font-face {
                font-family: Poppins;
                src: url('https://taxianjunis.neocities.org/fonts/Poppins-Bold.ttf');
                font-weight: bold;
            }

            @font-face {
                font-family: Poppins;
                src: url('https://taxianjunis.neocities.org/fonts/Poppins-Italic.ttf');
                font-style: italic;
            }

            @font-face {
                font-family: Poppins;
                src: url('https://taxianjunis.neocities.org/fonts/Poppins-BlackItalic.ttf');
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'Poppins', sans-serif;
                margin: 0;
                background-color: #08031A;
                background-size: 300px;
                color: #7281C9;
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

            #container {
                max-width: 1200px;
                
                margin: 0 auto;
                
            }

            
            #container a {
                color: #769DC9;
                font-weight: bold;
                text-decoration:none;
            }

            #header {
                width: 100%;
                background-color: #5e4e8c;
                height: 150px;
                background-image: var(--header-image);
                background-size: 100%;
            }


            #navbar {
                height: 40px;
                background-color: #F2D0ED;
                /* navbar color */
                width: 100%;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-bottom: 10px;
            }
            
            #navbar marquee {
                padding: 10px;
            }

            #navbar li a {
                color: #7281C9;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            #navbar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }

            
            aside {
                background-color: #F1E5F6;
                width: 215px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }


            main {
                background-color: #F2D0ED;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            
            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #F2D0ED;
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
            }

            h1,
            h2,
            h3 {
                color: #7281C9;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                color: #ABACDD;
            }
            p {
                color: #7D7D7D;
            }
            .box {
                background-color: #ABACDD;
                border: 1px dashed #B6D3F4;
                border-radius: 25px;
                padding: 10px;
                color: #FDFAFF
            }


            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }

            #menu ul {
              border: 1px dashed #B6D3F4;
                list-style-type: none;
                margin: 0;
                padding: 0;
                width: 160px;
                border-radius: 8px;
                background-color: #F1E5F6;
            }

               #menu   li a {
                
                border-radius: 8px;
                display: block;
                color: #ABACDD;
                padding: 8px 16px;
                text-decoration: none;
            }
               #menu   li a:hover {
                border-radius: 8px;
                background-color: #F2D0ED;
                color: #ABACDD;
            }

            /* 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: 800px) {
                #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;
          
            }