            /* there were variables here for the background image and header image but now theyre in the html file */

            /* if you have the URL of a font, you can set it below */

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
                font-weight: bold;
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
                font-style: italic;
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'verdana', sans-serif;
                margin: 0;
                background-color: #0d0529;
                background-size: 25%;
                background-image: var(--body-bg-image);

            }

            section.hero {
                background: #f4fbff;
                padding: 20px 20px 20px 20px;
                max-width: 1200px;
                margin: 0 auto;
                border-style: solid;
                border-color: #99bedd;
                border-width: 2px;
                margin-top: 20px;
                margin-bottom: 20px;
            }

            * {
                box-sizing: border-box;
            }

            /* below this line is CSS for the layout */
            /* 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: 1200px;
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                text-decoration: none;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            #header {
                background-color: #9072eb;
                height: 145px;
                height: 183px;
                width: 100%;
                margin: auto;
                margin-bottom: 10px;
                background-image: var(--header-image);
                background-size: 100%;
            }

            #navbar {
                height: 40px;
                background-color: #ceebfc;
                width: 100%;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 10px;
                color: #382222;
            }

            #navbar li a {
                color: #4977b3;
                font-weight: 800;
                text-decoration: none;
            }

            #navbar li a:hover {
                color: #24409e;
                text-decoration: underline;
            }

            #leftSidebar a:hover {
                color: #0b0a47;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }


            #leftSidebar {
                width: 220px;
                font-size: smaller;
                color: #0b0a47;
                position: relative;
            }

            #rightSidebar {
                width: 220px;
                font-size: smaller;
                color: #480a53;
                position: relative;
            }

            .center {
                display: block;
                margin-left: auto;
                margin-right: auto;
                width: 65%;
            }

            main {
                flex: 1;
                padding: 15px;
                order: 2;
                font-size: 14px;
                background-color: #ceebfc;
            }

            hr {
                border: 0;
                border-top: dashed;
                border-color: #99bedd;
                border-width: 2px;
                margin-top: 0;
                margin-bottom: 4px;
            }

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

            footer {
                background-color: #82a9db;
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                color: white;
                font-size: 13px;
            }

            footer a {
                color: white;
                text-decoration: underline;
            }

            h1,
            h2,
            h3 {
                margin: 0;
            }

            p {
                margin: 0;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                color: #ED64F5;
            }

            .box1 {
                display: grid;
                text-align: center;
                line-height: 21px;
                background-image: url("https://dullish.neocities.org/images/test3.png");
                background-repeat: no-repeat;
                background-size: 100%;
                background-position: center;
                height: 255px;
                font-size: 12px;
            }

            .box1 a {
                color: #0b0a47;
                font-weight: bold;
            }

            .box2 {
                height: 128px;
                font-size: 12px;
                display: table;
                border-style: solid;
                background-color: #fffef7;
                border-width: 2px;
                border-color: #90bce6;
                width: 330px;
                margin-right: 6px;
                float: left;
            }

            .box3 {
                height: 128px;
                font-size: 12px;
                display: inline-table;
                border-style: solid;
                background-color: #fffef7;
                border-width: 2px;
                border-color: #90bce6;
                width: 330px;
                margin-bottom: 6px;
                max-height: 110px;
            }

            .boxheader {
                position: relative;
                line-height: 30px;
                background-color: #90bce6;
                text-indent: 10px;
                color: white;
            }

            .box4 {
                font-size: 12px;
                display: inline-table;
                border-style: double;
                border-color: #99bedd;
                border-width: 7px;
                padding: 10px;
                margin-bottom: 10px;
                background-color: #f4fbff;
            }

            .box5 {
                border: solid;
                border-width: 1px;
                border-color: #3758a0;
                height: 70px;
                width: 220px;
                margin-bottom: 25px;
                background-color: #ffffec;
            }

            .buttons {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                margin-left: 10px;

            }

            .buttons>img {
                margin-right: .59em;
                margin-bottom: .59em;
            }

            /* CSS for extras */

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


            /* 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 subtract it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 1100px) {
                #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;
                }
            }