            :root {

                --content: rgba(255,255,255,.25);
                
            }

            @font-face {
                font-family: WistyFonts;
                src: url('https://wisteria.neocities.org/fonts/GIMJE-L.TTF');
            }

            @font-face {
                font-family: WistyFonts;
                src: url('https://wisteria.neocities.org/fonts/ACME-Explosive.ttf');
                font-weight: bold;
            }

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

            @font-face {
                font-family: WistyFonts;
                src: url('https://wisteria.neocities.org/fonts/Abscissa-Bold-Italic.ttf');
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'WistyFonts', sans-serif;
                margin: 0;
                background-color: #08031A;
                background-size: 180px;
                color: #fceaff;
                background-image: url('https://wisteria.neocities.org/SETPIECEFALLING.gif');
            }

            * {
                box-sizing: border-box;
            }

            #container {
                max-width: 1000px;
                margin: 0 auto;

            }
            
            #container a {
                color: #ED64F5;
                font-weight: bold;
            }

            #header {
                width: 100%;
                background-color: #5e4e8c;
                height: 150px;
                background-image: url('https://wisteria.neocities.org/monogatari.png');
                background-size: 100%;
            }

            #navbar {
                height: 40px;
                background-color: rgba(20,0,20,.91);
                /* navbar color */
                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: #ED64F5;
                font-weight: 800;
                text-decoration: none;

            }

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

            #flex {
                text-align: center;
                display: flex;
            }

            aside {
                background-color: rgba(0,0,0,.77);
                width: 200px;
                padding: 20px;
                font-size: smaller;
            }

            main {
                background-color: rgba(0,0,0,.77);
                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;
            }

            h1 {
                color: #EFACF3;
                font-size: 35px;
            }
            
            h2 {
                color: #b0f3ac;
                font-size: 25px;
            }
            
            h3 {
                color: #EFACF3;
            }

            strong {
                color: #EFACF3;
            }

            .box {
                background-color: #13092D;
                border: 1px solid #EFACF3;
                padding: 10px;
            }

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: rgba(0,0,0,.77);
            }

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

                aside {
                    width: 100%;
                }

                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

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