        :root {
          --header-image: url('DNDads.png');
          --body-bg-image: url('https://files.catbox.moe/8cwu55.png');
          --content: #000000;
        }
        
        .center {
          margin-left: 70px;
          margin-right: 70px;
        }
    
        @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: #000000;
          background-size: 1550px;
          color: #ffffff;
          background-image: var(--body-bg-image);
        }

        * {
          box-sizing: border-box;
        }
        
        #container {
          max-width: 880px;
          margin: 0 auto;
        }

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

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

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

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

        #flex {
          display: flex;
        }
        
        aside {
          background-color: #000000;
          width: 195px;
          padding: 15px;
        }

        main {
          background-color: #000000;
          flex: 1;
          padding: 0px;
          order: 2;
        }

        #leftSidebar {
          order: 1;
        }

        #rightSidebar {
          order: 3;
        }

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

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

        h1 {
          font-size: 25px;
        }

        strong {
          color: #D91717;
        }

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

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

        @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;
          }
        }
            
        a:link {
          color: #D91717;
          background-color: transparent;
          text-decoration: none;
        }

        a:visited {
          color: #D91717;
          background-color: transparent;
          text-decoration: none;
        }

        a:hover {
          color: #D91717;
          background-color: transparent;
          text-decoration: underline;
        }

        a:active {
          color: #D91717;
          background-color: transparent;
          text-decoration: underline;
        }
           
        * {
          scrollbar-width: auto;
          scrollbar-color: #D91717;
        }
        
        *::-webkit-scrollbar {
          width: 16px;
        }

        *::-webkit-scrollbar-track {
          background: #000000;
        }

        *::-webkit-scrollbar-thumb {
          background-color: #D91717;
          border-radius: 10px;
          border: 3px solid #000000;
        }
           
        sbox{
          height:390px;
          width:120px;
          overflow:auto;
          border:3px;
          padding: 5px;
          color: #D91717
        }
        
  
        ::selection {
          background: #D91717;
          color: #000;
        }
            
        div.indent-a {
          text-indent: 30px;
        }
        
        .zoom:hover {
          -ms-transform: scale(1.1);
          -webkit-transform: scale(1.1);
          transform: scale(1.1); 
        }

        .zoom {
          transition: transform .2s;
        }
        
        .lightbox {
          display: none;
          position: fixed;
          z-index: 999;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          padding: 1em;
          background: rgba(0, 0, 0, 0.8);
        }

        .lightbox:target {
          display: block;
        }

        .lightbox span {
          display: block;
          width: 100%;
          height: 100%;
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
        }