/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

       <style>

                --content: #406F26;
            }

            @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: 'Nunito', sans-serif;
                margin: 0;
                background-color: #08031A;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 65px;
                color: #fceaff;
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

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

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

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

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

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

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

            /* navigation links*/
            #navbar li a {
                color: #E3F5DA;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }
            #navbar li a:hover {
                color: #283F1C;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }
            
            aside {
                background-color: #283F1C;
                width: 200px;
                padding: 20px;
                font-size: smaller;
            }

            main {
                background-color: #212F1A;
                flex: 1;
                padding: 20px;
                order: 2;
            }
            
            */ #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #406F26;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

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

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: #B9D28A;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #212F1A;
                border: 1px solid #B9D28A;
                padding: 10px;
            }
            
            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #406F26;
            }

            @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>
}
 