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

            * {
                box-sizing: border-box;
            }

            #container {
                max-width: 100%;
                margin: 0 auto;
            }

            #container a {
                font-weight: bold;
                text-decoration: none;
            }

            #navbar {
                height: 30px;
                background-color: #777777;
                /* navbar color */
                width: 100%;
            }

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

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

            #navbar li a {
                color: #000000;
                font-weight: 800;
                text-decoration: none;
            }

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

            #flex {
                display: flex;
            }

            .collapsible {
              background-color: #f9f9f9;
              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: #f9f9f9;
            }
            
            /***
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: 10px;
              gap: 10px;
              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 50px 10px 0;
              max-width: 200px;
              max-height: 200px;
              object-fit: contain;
              object-position: bottom;
            }

            #toc_container li, #toc_container ul, #toc_container ul li{
              list-style: outside none none !important;
            }


            main {
                background-color: #FFFFFF;
                color: #575352;
                flex: 1;
                padding: 20px;
                order: 2;
            }
            
            #rightSidebar {
                background-color: #575352;
            }

            footer {
                background-color: #575352;
                color: #FFFFFF;
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                font-size:14px
            }
            a:link {
  color: #E2BD64;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  background-color: transparent;
  text-decoration: underline;
}
            
            #hr {
                color: #575352;
            }

            h1,
            h2,
            h3 {
            }

            h1 {
              font-size: 25px;
            }

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }

            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }
                
                #navbar li a {
                  font-size: 13px;
                }

                main {
                    order: 1;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
        </style>