
 #win, #winB { position: absolute; width: auto; border: 3px solid transparent; background-color: #c0c0c0; border-image: url(https://coffeebug.neocities.org/border1.png) 3 round;} 
    .win2 {background: #000080; width: auto; min-height: 18px; font-size: 16px; padding: 2px; color: white; text-align:left;} 
    .win2:hover{cursor: url(https://smallmunch.neocities.org/cur/SmoothHand.cur), pointer;} 
    .winI{float: right; max-height: 20px;}
    .extra{ padding: 3px; }
    
    .i1 {width: 128px; height: 64px;}
    i3 {margin:0 AUTO}
    i3 img {padding-bottom: 4px;}
    i2 a {text-decoration: none; color: white}
    i2 {background: #ffffff33; color: white; border: 2px solid transparent; padding: 2px; text-align: center; margin: auto}
    i2:hover {background: #ffffff33; border: 2px dotted red; color: white; padding: 2px; text-align: center}
      .textbox { border: 2px solid transparent; border-image: url(https://midifreak.online/w/border2.png) 2 round; max-height: 460px; padding: 6px; background: white; font-size: 14px; overflow-y:auto; font-family: 'Type', sans-serif;}
    st { font-size: 9px }
    bt { display: inline-block; color: white; padding: 1px; border-radius: 2px;}
    
            :root {
                --body-bg-image: url('https://smallmunch.neocities.org/balls.png');}

 
            @font-face { font-family: 'Grotesk'; src: url(https://smallmunch.neocities.org/Grotesk55.ttf); }
            @font-face { font-family: 'Grotesk'; src: url(https://midifreak.online/w/Grotesk75.ttf); font-weight: bold;}
            @font-face { font-family: Sanssucks; src: url('https://smallmunch.neocities.org/sans.ttf'); }
            @font-face { font-family: 'Type'; src: url('https://smallmunch.neocities.org/COMIC.TTF'); }

            body {
                font-family: 'Grotesk', sans-serif;
                margin: 0 auto;
                background-color: #08031A;
                color: black;
                background-image: var(--body-bg-image);
                background-height: 100%;
            }

            * {
                box-sizing: border-box;
            }

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #container {
                max-width: 700px;
                /* 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: 0 auto;
                /* this centers the entire page */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: blue;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

          p1 { font-size: 16px; font-weight: bold; }
p2 { font-size: 8px; font-color: #00000077;}

            #header {
                width: 100%;
                background-color: #5e4e8c;
                /* header color here! */
                height: 150px;
                /* this is only for a background image! */
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
                background-image: var(--header-image);
                background-size: auto;
            }

            /* 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;
            }

            /* navigation links*/
            #navbar li a {
                color: #ED64F5;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-image: url('https://smallmunch.neocities.org/water.gif');
                border-radius: 2px;
                box-shadow: 4px 4px 0px #00000099;
                width: 200px;
                padding: 10px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: transparent;
                border-radius: 5px;
                
                flex: 1;
                padding: 0px;
                order: 2;
                overflow-y: auto;
                max-height:600px;
                min-width: 600px;
                display: block;
            }

            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #153d13;
                border: 1px solid black;
                border-radius: 5px;
                padding: 10px;
                color: white;
                box-shadow: 5px 10px 1px #00000099 inset;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 20px;
                font-size: smaller;
                background-color: #13092D;
            }


            /* 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: 800px) {
                #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;
                }
            }
/*
     FILE ARCHIVED ON 11:47:08 Apr 22, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 03:42:19 May 04, 2024.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.698
  exclusion.robots: 0.087
  exclusion.robots.policy: 0.075
  cdx.remote: 0.064
  esindex: 0.009
  LoadShardBlock: 100.562 (3)
  PetaboxLoader3.datanode: 183.36 (5)
  PetaboxLoader3.resolve: 229.174 (3)
  load_resource: 366.107 (2)
*/