


            :root {
                --header-image: url('https://sadhost.neocities.org/images/layouts/wp.jpeg');
                --body-bg-image: url('https://bettysgraphics.neocities.org/images/backgrounds/201.GIF');
                --content: #43256E;
            }

            @font-face {
                font-family: Courier;
                src: url('https://midnightcrustcat.neocities.org/fonts/Courier-Prime.ttf');
            }

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

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

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

            body {
                font-family: 'Courier', monospace;
                margin: 0;
                background-color: #000000 ;
                background-size: 300px;
                color: #f2e9ea;
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

            #container {
                max-width: 1300px;
                margin: 50 auto;
                
            }

            #container a {
                color: #ff71a1;
                font-weight: bold;

            }

            #header {
                width: 100%;
                background-color: #5e4e8c;
                height: 150px;
                background-image: var(--header-image);
                background-size: 100%;
            }

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

            #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: #f2e9ea;
                font-weight: 800;
                text-decoration: none;
            }

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

            #flex {
                display: flex;
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: #1a1115;
                flex: 1;
                border-color: #ff71a1;
                border-style: solid;
                border-width:5px;
                padding: 20px;
                order: 2;
                height:800px;
                overflow:auto;
            }


            leftSidebar {
                background-color: #1a1115;
                width: 250px;
                border-width: 5px;
                border-style: solid;
                border-color: #ff71a1;
                padding: 20px;
                height:800px;
                order: 1;
                overflow:auto;
            }

            rightSidebar {
                background-color: #1a1115;
                width: 270px;
                border-width: 5px;
                border-style: solid;
                border-color: #ff71a1;
                padding: 20px;
                height:800px;
                order: 3;
                overflow:auto;
            }

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

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

            h1 {
                font-size: 30px;
            }
            
            h2 {
                font-size: 25px;
            }
            
            h3 {
                font-size: 20px;
            }

            strong {
                color: #ff71a1;
            }
            
            p {
              font-size: 20px;
            }
            
            li {
              font-size: 18px;
            }
            
            ul {
              font-size: 20px;
            }
            
            a {
              color: #ff71a1;
            }
            
            .center {
             display: block;
             margin-left: auto;
             margin-right: auto;
             width: 50%;
            }

            .container {
                display: flex;
            }
            
            .box {
               background-color: #1a1115;
                border: 5px;
                border-color: #ff71a1;
                border-style: solid;
                overflow-y: auto;
                max-height: 350px;
                width: 650px;
                padding: 10px;
                margin: 10px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .box2 {
                background-color: #1a1115;
                border: 5px;
                border-color: #ff71a1;
                border-style: solid;
                overflow-y: auto;
                max-height: 350px;
                width: 350px;
                padding: 10px;
                margin: 10px;
                margin-left: auto;
                margin-right: auto;
            }
            

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



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

                aside {
                    width: 50%;
                }

                main {
                    order: 1;
                }

                leftSidebar {
                    order: 2;
                }

                rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }