   <style>
            :root {
                --header-image: url('transparent');
                --body-bg-image: url('transparent');
            }

            /* FONTS */

            @font-face {
            font-family: "TimesNewPixel";
            src: url("https://files.catbox.moe/a5dqrr.ttf") format("truetype");
            }

            @font-face {
            font-family: "PixelTimesNewRoman";
            src: url("https://files.catbox.moe/l4r3nt.ttf") format("truetype");
            }
            
            body, html {
                position: center;
                font-family: 'TimesNewPixel', 'PixelTimesNewRoman', sans-serif, serif;
                font-size: 16px;
                margin: auto;
                color: #331644;
                background-image: url(https://files.catbox.moe/nm4qf6.png);
                scrollbar-width:thin;
                scrollbar-color: #a36ad1 #cca2ee;
            }

            * {
                box-sizing: border-box;
            }

            /* LAYOUT */

            #container {
                max-width: 800px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: auto;
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #5f107e;
                text-decoration: none;
            }

            /* HEADER */
            #header {
                width: 100%;
                margin-bottom: -10%;
                background-color: #08031A;
                height: 0;
                background-image: var(--header-image);

            }
            .halftone img {
                position: relative;
                 margin-bottom: -640px; 
                 right: 250px; 
                 z-index: -200px; 
                 mix-blend-mode: soft-light;
            }
            .logo img {
            position: relative; 
            margin-bottom: -240px; 
            z-index: -100px;
            }

            /*  FULL PAGE */
            #flex {
                display: flex;
                border: 1px solid rgb(61, 33, 85);
                padding-top: 10px; 
                padding-bottom: 10px;
                background-image: linear-gradient(0.25turn, #cca2ee -5%, #a36ad1 50%);
                border-radius: 3px;
                box-shadow: 10px 10px 0px #24144548;
                transform: perspective(0);
            }

            /* SIDEBAR */
            aside {
                background-color: #a36ad1;
                width: 200px;
                padding: 20px;
            }

            /* MAIN PAGE */
            main {
                background-color: #d3aaf5;
                background-image: url(https://www.shutterstock.com/image-vector/cute-childish-checkerboard-y2k-seamless-600nw-2197716405.jpg);
                background-size: 200px;
                background-blend-mode: luminosity;
                flex: 1px;
                padding: 20px;
                order: 2;
                /* INDEX WITH IFRAME */
                height: 800px;
            }

            /* INDEX WITH IFRAME */
            iframe {
                border: 0;
                width: 600px;
                height: 100%;
                }

            .guestbook {
                border: 0;
                width: 550px;
                height: 100%;
                }
            
            .ad {
                border: 0;
                position: relative;
                bottom: 700px;
                left: 350px;
                width: 150px;
                height: 450px;
                }

            /* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

            */ #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-image: transparent;
                height: 40px;
                margin-top: 5px;
                margin-bottom: 5%;
                padding: 10px;
                text-align: right;
                color: black
            }

            h1,
            h2,
            h3,

            h1 {
                font-family: 'PixelTimesNewRoman';
                font-size: 25px;
            }

            /* BOXES */
             .button {
                background-image: linear-gradient( #cc99ff 75%,  #b366ff);
                border: 1px solid #cc99ff;
                border-radius: 5px;
                max-height: fit-content;
                padding: 5px;
                margin-top: 5px;
                box-shadow: 2px 2px 0px rgba(0,0,0,0.3);
            }
            
             .button:hover {
                background-image: linear-gradient( #dbb7ff 75%,  #c78fff);
                color:#8d2acf;
            }

            .box {
                background-image: linear-gradient( #cc99ff 75%,  #b366ff);
                border: 1px solid #cc99ff;
                border-radius: 5px;
                padding: 10px;
                 box-shadow: 2px 2px 0px rgba(0,0,0,0.3);
            }

            .changelog {
                background-image: linear-gradient( #cc99ff 75%,  #b366ff);
                border: 1px solid #cc99ff;
                border-radius: 5px;
                padding: 10px;
                overflow: auto;
                height: 200px; 
                scrollbar-width:none;
                box-shadow: 2px 2px 0px rgba(0,0,0,0.3);
            }

            .box2 {
                background-color: white;
                border: 1px solid #cc99ff;
                border-radius: 2px;
                padding: 10px;
                box-shadow: 5px 5px 0px rgba(0,0,0,0.5);
            }

            /* IMAGES */
             .chibi img{
                float: right; 
                width: 35%; 
                position: relative;
                bottom: 40px;
            }
            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 600px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }
        </style>

    