            :root {
                --body-bg-image: url('https://sadhost.neocities.org/images/tiles/trees.png');
                --content: #16591E;
            }


            @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: #16591E;
                background-size: 65px;
                color: #FFF9E5;
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

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

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

            #navbar {
                height: 40px;
                background-color: #16591E;
                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: #FFC65E;
                font-weight: 800;
                text-decoration: none;
            }

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

            #flex {
                display: flex;
            }

            aside {
                background-color: #16591E;
                width: 200px;
                padding: 20px;
                margin-left: 10px;
                font-size: smaller;
            }

            main {
                background-color: #16591E;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

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

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

            h1 {
                font-size: 25px;
            }

            strong {
                color: #FFC65E;
            }

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #16591E;
            }
            
            img {
              display: block;
              margin-left: auto;
              margin-right: auto;
              max-width: 100%;
            }
            .left {
              text-align: left;
            }
            .center {
              text-align: center;
            }
            .right {
              text-align: right;
            }

            figcaption {
              font-size: 10px;
              text-align: center;
              width: 200px;
            }
            
            /***
EZ Gallery by netfriend - https://netfriend.neocities.org/ez-gallery/
Released under the Unlicense - https://unlicense.org/
***/

            .ezgallery.montage { 
              display: flex;
              flex-flow: row wrap;
              align-items: center;
              justify-content: center;
              width: 100%;
            }

            .ezgallery.montage img {
              flex: auto;
              margin: 0 5px 5px 0;
              object-fit: contain;
              object-position: bottom;
            }

            .ezgallery.horizontal { 
              display: grid;
              grid-gap: 100px;
              gap: 100px;
              grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
              grid-auto-rows: minmax(100px, auto);
            }

            .ezgallery.horizontal a {
              text-align: center;
            }

            .ezgallery.horizontal img {
              text-align: center;
              vertical-align: middle;
              margin: 0 10px 10px 0;
              max-width: 200px;
              max-height: 200px;
              object-fit: contain;
              object-position: bottom;
            }

            .collapsible {
              background-color: #00AF14;
              cursor: pointer;
              width: 250px;
              border: 1px solid #aaa;
              text-align: left;
              outline: none;
            }

            .content {
              padding: 0 10px;
              width: 250px;
              display: none;
              overflow: hidden;
              background-color: #00AF14;
            }


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

                aside {
                  width: 100%;
                  margin-top: 10px;
                  margin-left: 0px;
                }
                
                footer {
                  height: 90px;
                }

                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

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