            :root {
                --content: #43256E;
            }

            @font-face {
                font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
            }

            @font-face {
                font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
                font-weight: bold;
            }

            @font-face {
                font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
                font-style: italic;
            }

            @font-face {
                font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
                font-style: italic;
                font-weight: bold;
            }

            body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                background-color: #fbf1c7;
                background-size: 65px;
                color: #3c3836;
            }
            
            * {
                box-sizing: border-box;
            }

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

            .comic img {
              max-width: 100vw;   /* no horizontal scrolling */
              max-height: 100vh;  /* no vertical scrolling */
              width: auto;
              height: auto;
              object-fit: contain;
              display: block;
              margin: 0 auto;
            } 

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

            #header {
                width: 100%;
                background-color: #5e4e8c;
                height: 150px;
                background-size: 100%;
            }

            #navbar {
                height: 40px;
                background-color: #d5c4a1;
                /* 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: #574833;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

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

            #flex {
                display: flex;
            }

            aside {
                background-color: #d4be98;
                width: 200px;
                padding: 20px;
                font-size: smaller;
            }

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

            #rightSidebar {
                order: 3;
            }

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

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

            h1 {
                font-size: 25px;
            }

            strong {
                color: #574833;
            }

            .box {
                background-color: #ebdbb2;
                border: 1px solid #d5c4a1;
                padding: 10px;
            }

            li.no-bullets {
              list-style-type: none; /* Remove bullets */
            }
            
            #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;
                }
            }