@font-face {
  font-family: 'Arial-Mono';
  src: url(/Arial-Mono.ttf);
}
            body {
              background-color: #000000;
              color: #ffffff;
              font-size: 13px;
              font-family: Arial-Mono;
              background-image: url('/bg.png');
            }
            * {
                box-sizing: border-box;
            }
            
            canvas {
                border: 1px solid black;
                cursor: crosshair;
                background-color: white;
                max-width: 100%;
            }
            #gallery {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
            }
            .image-container {
                border: 1px solid #ccc;
                padding: 5px;
                text-align: center;
                max-width: 100%;
            }
            .image-container img {
                max-width: 100%;
                height: auto;
                display: block;
            }
            button {
                background-color: #ffffff25;
                color: #ffffff;
                border: 2px solid #ffffff;
            }
            
            #container {
                max-width: 1200px;
                margin: 0 auto;
            }

            #flex {
                display: flex;
            }

            aside {
                background-color: transparent;
                width: 33%;
                padding: 10px;
            }

            main {
                background-color: transparent;
                flex: 1;
                padding: 10px;
                order: 2;
            }
            
            h1, h2 {
              margin-bottom: 5px;
              text-align: center;
            }
            
            h1 {
              margin-top: 0px;
              font-size: 18px;
            }
            
            h2 {
              font-size: 16px;
            }

            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            .box {
                background-color: #202020;
                border: 3px solid #ffffff15;
                border-radius: 5px;
                padding: 10px;
                width: 100%;
                max-height: 500px;
                overflow: scroll;
            }
            .item {
              background-color: #202020;
              border-radius: 3px;
            }
            .post {
              text-align: left;
              color: #ffffff;
              padding: 10px;
              font-size: 15px;
              font-family: sans-serif;
              border: 1px solid #ffffff15;
              width: 95%;
              margin: 0px;
            }
            table {
              width: 100%;
            }
            td {
              text-align: center;
              width: 50%;
            }
            .stuff {
              max-height: 100px;
            }
            b {
              text-align: center;
            }
            a {
              color: #ffffff;
            }
            a:hover {
              color: #ffffff50;
            }
            .pfp {
              height: 25px;
              border-radius: 2px;
            }
            .user {
              font-size: 16px;
              font-weight: bold;
              color: #ffffff;
              text-decoration: none;
            }
            .user:hover {
              color: #ffffff50;
            }
            .me:hover {
              color: #ffffff;
            }
            .info {
              color: #ffffff75;
              font-style: normal;
            }
            .post-image {
              max-width: 100%;
            }
            .post-image-half {
              max-width: 49%;
            }
            .post-image-third {
              max-width: 32%;
            }
            details {
              border-left: 1px solid #ffffff15;
              border-right: 1px solid #ffffff15;
              text-align: left;
              padding-left: 10px;
            }
            summary {
              width: 99.6%;
              text-align: left;
            }
            .ment {
              color: #ffffff50;
              text-decoration: none;
            }
            .ment:hover {
              color: #ffffff25;
            }
            .blinkie {
              height: 22px;
              width: 165px;
            }
            .blinkie-small {
              height: 22px;
            }
            .stamp {
              height: 45px;
              width: 79.553px;
            }
            .button {
              height: 28px;
            }
            .badge {
              height: 14px;
            }
            .userbox {
              height: 40px;
              width: 165px;
            }
            .fanlisting {
              height: 50px;
            }
            .fanlisting:hover {
              opacity: 0.5;
            }
            .various-itty {
              height: 14px;
            }
            .img-link:hover {
              opacity: 0.5;
            }
            .red {
              color: #E64F31;
            }
            .orange {
              color: #FE8A00;
            }
            .yellow {
              color: #FAC51C;
            }
            .green {
              color: #04D038;
            }
            .aqua {
              color: #00BBF7;
            }
            .blue {
              color: #2C82C9;
            }
            .purple {
              color: #7B5BF9;
            }
            .pink {
              color: #FC64CC;
            }
            .gray {
              color: #FFFFFF50;
            }

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

                aside {
                    width: 98%;
                }
                
                main {
                    order: 2;
                }

                #leftSidebar {
                    order: 1;
                }

                #rightSidebar {
                    order: 3;
                }
            }
            
            
            
            
            
            
            
            
            
            