:root {
                --header-image: url('https://crystallineflowers.neocities.org/360_F_466670720_9VBfSBTmozs5lUhzjUTerqV6PY6Z7cmM-417579367.jpg');
                --body-bg-image: url('https://sadhost.neocities.org/images/tiles/purplesky.gif');

                /* colors */
                --content: #cafcf3;
            }
            @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;
                color: #ffbee6
            }
            body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                background-color: #c8b3eb;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 65px;
                color: #fceaff;
                            }
            * {
                box-sizing: border-box;
            }

            #container {
                max-width: 900px;

                margin: 0 auto;
            }

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

            #header {
                width: 100%;
                background-color: #cafcf3;
                height: 150px;
                background-image: var(--header-image);
                background-size: 100%;
            }
            #navbar {
                height: 40px;
                background-color: #dcd0ff;
                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: #483d8b;
                font-weight: 800;
                text-decoration: none;
            }
            #navbar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }
            #flex {
                display: flex;
            }
            aside {
                background-color: #fffaf0;
                width: 200px;
                padding: 20px;
                font-size: smaller;
            }
            main {
                background-color: #584177;
                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,
            h2,
            h3 {
                color: #c89bec;
            }
            h1 {
                font-size: 25px;
            }
            strong {
                color: #170128;
            }
            .box {
                background-color: #584177;
                border: 1px solid #c89bec;
                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;
                }
            }
            details { border:1px solid #ffffff;padding:10px;border-radius:15px;margin:10px 0;}