<!-- THIS IS THE CSS !-->
        <style>
           

            :root {
                --header-image: url('https://wintersolcticezero.neocities.org/DOOM/Lair.png');
                --body-bg-image: url('DOOM/fractal.jpg');
              
                 background-attachment: fixed;
                 background-size: 300px 100px;
                 background-position: center;
                 -webkit-font-smoothing: antialiased;

               
                --content: #000000;
            }

            

            @font-face {
                font-family: TECH ;
                src: url('FONTS/TECHKR__.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: 'TECH', sans-serif;
                font-size: 29px;
                letter-spacing: 1px;
                background-color: #000000;
               
                background-size: 200px;
                background-attachment: fixed;
                 background-size:cover;
                 background-position: center;
                 -webkit-font-smoothing: antialiased;
                color: #ffffff;
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

          
            #container {
                max-width: 900px;
               
                margin: 0 auto;
               
            }

           
            #container a {
                color: #0000cd;
                font-weight: bold;
                
            }

            #header {
                width: 100%;
                height: 100%;
                background-color: #000000;
               
                height: 50px;
               
                background-image: var(--header-image);
                background-size: 100%;
            }

            
            #navbar {
                height: 40px;
                background-color: #000000;
               
                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: #0000cd;
                
                font-weight: 800;
                text-decoration: none;
              
            }

           
            #navbar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }

          
            aside {
                background-color: #000000;
                width: 200px;
                padding: 20px;
                font-size: smaller;
               
            }


            
            main {
                background-color: #000000;
                flex: 1;
                padding: 20px;
                order: 2;
            }


            */ #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #13092D;
               
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
             
            }
            
            .hellLink {
  border: 1px black;
  background-color: black;    
  text-align: left;
  width: 20px
            }
            

            h1,
            h2,
            h3 {
              color: #8B0000;
            }

            h1 {
                font-size: 25px;
            }
            
            hr { display: block; height: 1px;
                 border: 0; border-top: 1px solid #555;
                 margin: 1em 0; padding: 0; }

            strong {
               
                color: #ff0000;
            }

            
            .box {
                background-color: #13092D;
                border: 1px solid #ED64F5;
                padding: 10px;
            }

            

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }


            @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;
                }
            }
        </style>

    