 <style>


            :root {
                --header-image: url('https://boypussy.neocities.org/layout/bg%20images/headerburger.gif');
                --body-bg-image: url('https://boypussy.neocities.org/layout/bg%20images/polkadots.jpg');

                /* colors */
                --content: #43256E;
            }



            body {
                font-family:
                margin: 0;
                background-color: #08031A;
                /* you can delete the line below if you'd prefer to not use an image */
                color: #00000;
                cursor: url("https://boypussy.neocities.org/layout/deco/pixels/creaturecursor.gif"), auto;
                background-image: var(--body-bg-image);
                background-repeat:repeat
                
            }

            * {
                box-sizing: border-box;
            }
              .column {
                float: left;
                width: 50%;
                padding: 5px;
               }

               .row::after {
                content: "";
                clear: both;
                display: table;
               }

            #container {
                max-width: 900px;
                margin: 0 auto;
                
            }


            #container a {
                 font-weight: bold;
                background: #17B2FF;
                background: linear-gradient(to right, #17B2FF 0%, #FFFF00 50%, #FF0000 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                text-decoration:none
            }

            #header {
                width: 100%;
                background-color: #019de7;
                height: 300px;
                background-image: var(--header-image);
                background-size: 100%;
                
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #13092D;
                /* 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: #ED64F5;
                font-weight: 800;
                text-decoration: none;
            }


            #navbar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            #flex {
                display: flex;
                border: 1px solid #a7b8c9
            }
/
            aside {
                background-color: #bfebff;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                background-image: url("https://boypussy.neocities.org/layout/bg%20images/cherry.png")
                /* this makes the sidebar text slightly smaller */
            }


            main {
                background-color: white;
                flex: 1;
                padding: 20px;
                order: 2;
                border: 1px solid #a7b8c9
            }

            /* 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-color: #019de7;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                border: 1px solid #a7b8c9
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                color: #4dcfff;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: #fa0a42;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #ffbac1;
                border: 1px solid #a7b8c9;
                padding: 10px;
            }

           .scroll {
            width: 90%;
            height: 30%;
            display: inline-block;
            background-image: linear-gradient(#ffbac1, #f0eeb4);
            border: 1px solid #a7b8c9;
            overflow: auto;
            
}
           .overlay {
            position: absolute;
           top: 30%;
           left: 34%;
           width: 600px;
           text-align:center;
}

           .overlay2 {
            position: absolute;
           top: 35%;
           left: 40%;
           width: 350px;
           text-align:center;
}

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #019de7;
                border: 1px solid #a7b8c9
            }
           
           
           th, td {
            padding: 10px;
           }



            @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;
                }
            }
            
            table, th, td {
  border:1px solid grey;
}
        </style>