          /* user styles */

            /* styles are what change the color and sizes of stuff on your site. */

            /* these are variables that are being used in the code
    these tended to confuse some people, so I only kept 
    the images as variables */

            :root {
                --header-image: url(Assets/Imgs/BG/headerbg.gif);
                --body-bg-image: url(Assets/Imgs/BG/2025_01_29_0zi_Kleki.png);

                /* colors */
                --content: #43256E;
            }

            /* if you have the URL of a font, you can set it below */
            /* feel free to delete this if it's not your vibe */

            /* this seems like a lot for just one font and I would have to agree 
    but I wanted to include an example of how to include a custom font.
    If you download a font file you can upload it onto your Neocities
    and then link it! Many fonts have separate files for each style
    (bold, italic, etc. T_T) which is why there are so many!
    
    */
            @font-face {
            font-family: 'Papyrus';
            src: url(Assets/Fonts/papyrus.ttf);
            }

            @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;
            }

            @font-face {
                font-family: PokemonH;
                src: url(Assets/Fonts/PokemonHollow.ttf);
            }

            @font-face {
                font-family: PokemonS;
                src: url(Assets/Fonts/PokemonSolid.ttf);
            }

            @font-face {
                font-family: Roblox;
                src: url(Assets/Fonts/Roblox.ttf);
            }

            @font-face {
                font-family: Lacheyard;
                src: url(Assets/Fonts/LacheyardScript.otf);
            }

            @font-face {
                font-family: Starborn;
                src: url(Assets/Fonts/Starborn.otf);
            }

            @font-face {
                font-family: Popstar;
                src: url(Assets/Fonts/SuperPopstar.ttf);
            }

            @font-face {
                font-family: Dragons;
                src: url(Assets/Fonts/Dragons.ttf);
            }

            @font-face {
                font-family: Ways;
                src: url(Assets/Fonts/48ways.ttf);
            }

            @font-face {
                font-family: Sunday;
                src: url(Assets/Fonts/CasualSunday.otf); 
            }

            @font-face {
                font-family: Guns;
                src: url(Assets/Fonts/Guns.ttf);
            }

            @font-face {
                font-family: nteen;
                src: url(Assets/Fonts/1999.ttf);
            }

            @font-face {
                font-family: YellowFrog;
                src: url(Assets/Fonts/12SaruYellowFog-Regular.ttf);
            }

            @font-face {
                font-family: ArticleTen;
                src: url(Assets/Fonts/Article10-Regular.ttf);
            }

            @font-face {
                font-family: AmeliaNormal;
                src: url(Assets/Fonts/Amelia-Normal.ttf);
            }

            @font-face {
                font-family: Blackout;
                src: url(Assets/Fonts/Fonts/Blackout-Regular.ttf);
            }

            @font-face {
                font-family: AFTEI;
                src: url(Assets/Fonts/AFTEI.TTF);
            }


            @font-face {
                font-family: Ledlight;
                src: url(Assets/Fonts/LEDLIGHT.otf);
            }

            @font-face {
                font-family: Guns;
                src: url(Assets/Fonts/Guns.ttf);
            }
           

            body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                background-color: #08031A;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 100%;
                color: #fceaff;
                background-image: var(--body-bg-image);
                background-repeat: no-repeat;
                /*background-position: center 271px; */
                background-color: white;
            }

            * {
                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 */

    
.item{
  display:flex;
  align-items:center;
  justify-content:center;

  padding:10px 18px;

  background-color: #78786d;
  background-image: url(Assets/Imgs/BG/login.gif);
  background-position:center;
  border-width:7px;
  border-style:solid;
  border-image: url(Assets/Imgs/PNG/51a-none.gif) 9 round;
       
    

  background-size:100% 100%;
}
/*SIDEBAR^*/

/*WIGGLE ANIMATION*/
.item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;

  text-decoration:none;
  color: inherit;
  font-weight: 1000;


  transform: translateZ(0);
  transition: transform 180ms cubic-bezier(.2,.8,.2,1),
              letter-spacing 180ms cubic-bezier(.2,.8,.2,1),
              filter 180ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;

  /* default scale variable */
  --s: 1;
}

.item:hover{
  /* make it bigger on hover */
  --s: 1.15;
  font-weight: 100;

  letter-spacing: 0.5px;
  filter: brightness(1.06);
  animation: wiggle 260ms ease-in-out both;
}

.item:active{
  /* optional: larger on active; adjust as desired */
  --s: 1.66;
}

@keyframes wiggle{
  0%   { transform: translate3d(0,0,0) scale(var(--s)); }
  20%  { transform: translate3d(-2px,0,0) rotate(-0.6deg) scale(var(--s)); }
  40%  { transform: translate3d(2px,0,0) rotate(0.6deg) scale(var(--s)); }
  60%  { transform: translate3d(-1px,0,0) rotate(-0.3deg) scale(var(--s)); }
  80%  { transform: translate3d(1px,0,0) rotate(0.3deg) scale(var(--s)); }
  100% { transform: translate3d(0,0,0) scale(var(--s)); }
}



            /* 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: 1100px;
                /* 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: rgb(255, 255, 255);
                font-weight: bold;
                font-family: 'Papyrus', cursive;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            #header {
                width: 100%;
                background-color: #00ff99;
                /* 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: 30%;
                font-family: 'Papyrus';
                color: #ED64F5;
                font-size: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 10px;
        
            }

            /* navigation section!! */
            #navbar {
                height: 80px;
                /*background-image: url(assets/mechmoth/textures\ \ bgs/fondo romántico 17.jpg);*/
                background-size: 10%;
                background-position-y:80%;
                /* navbar color */
                width: 100%;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
                align-items: center;
                height: 100%;
            }

            #navbar li {
                padding-top: 10px;
            }

            #flex {
                display: flex;
                align-items: flex-start;
                flex-wrap: nowrap;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #85ba87;
                opacity: 0.9;
                width: 200px;
                flex: 0 0 200px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }


            

            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-image: url(Assets/Imgs/BG/paper1.jpg);
                flex: 1;
                padding: 20px;
                order: 2;
                display: flex;
                flex-direction: column;
                gap: 20px;
                min-width: 0;


            }

            /* this is for making the images in the main content area blend into the background! */


            .blend-image {
                display: block;
                max-width: 100%;
                -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 100%);
                mask-image: radial-gradient(ellipse at center, black 35%, transparent 100%);
            }

            /*this is for putting the header and weed gif on  the same line
            */
            .same-line {
                display: flex;
                align-items: center;
                justify-content: center;
                
                gap: 12px;
            }

            .same-line h1 {
                margin: 0;
            }

            .inline-img {
                width: 20%;
                height: 20%;
                justify-content: center;
            }


            /* 
    left sidebar is 1, content is 2, and right sidebar is 3! */

            #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #13092D;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

            h1,
            h2,
            h3,
            h4,
            h5 {
                color: #000000;
 
                justify-content: center;
                align-content: center;
                text-align: center;

            }

            h4 {
                font-size: 33px;
            }

            h1 {
                font-size: 25px;
                font-family: Popstar;
            }

            h2,
            h3,
            h4 {
                font-family: Ledlight;
            }

            h5 {
                font-family: Guns;
            }


            .imgCentered {
                display: block;
                margin-left: auto;
                margin-right: auto;
            }




            p,
            h6 {

                text-align: center;


            }


            p {
                font-family: AFTEI;
                color: rgb(87, 87, 87);
                font-size: 30px;
                text-shadow: 1px 1px 0px #000;
            }

            h6 {
                font-family: Starborn;
                color: #1f1f1f;
                font-size: 12px;
            }

            strong {
                /* this styles bold text */
                color: #ED64F5;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {

                background-color: #2e0000;
                border: 1px solid #ED64F5;
                padding: 10px;
                background-image: url(Assets/Imgs/BG/dots.jpg);
                background-size: fill;

            }
            
/* this is the box on the left sidebar*/

            .boxL {
              /*  background-image: url(assets/32.jpg); */
                background-size: cover;
                background-position: -220px 0px;
                background-repeat: no-repeat;
                background-image: url(Assets/Imgs/BG/cloverpaper.png);
                background-blend-mode: multiply;
                background-color: #748e7d;





                border: 1px solid #ED64F5;
                padding: 10px;
                color: rgb(153, 229, 118);
            }


/* this is the box on the right sidebar*/

            .boxR {
               /* background-image: url(assets/big-fish-close.png); */
                background-size: cover;
                background-image: url(Assets/Imgs/BG/cloverpaper.png);
                background-blend-mode: multiply;



                background-color: #748e7d;
                border: 1px solid #ED64F5;
                padding: 10px;
                color: rgb(153, 229, 118);
            }
            .hcontainer {
                display: flex;
                gap: 20px;
                justify-content: center;


            }

            .box-half-width {
                background-color: #b2a9c7;
                border: 1px solid #604961;
                padding: 10px;
                width: 200px;
                height: fit-content;
                font-family: nteen;
                color: black;
                width: 180px;
                height: 200px;
            }


            /* the scroll box inside the outer box */
            .scroll-box {
                width: 100%;
                height: 180px;
                overflow-y: auto;
                padding: 10px;
                border: 1px solid black;
                background-image: url(Assets/Imgs/BG/purple_paper.gif);

                background-color: #c6c3cd;
            }


            .image-stack {
                position: relative;
                display: inline-block;

            }

            .img-bottom {
                display: block;
                width: 100%;
                height: auto;
                filter: contrast(-100);
            }

            .img-top {
                position: absolute;
                top: 60%;
                left: 60%;
                width: 120px;
                height: auto;
                transform: translate(-50%, -50%);
                z-index: 2;
            }

            .img-top:hover {
                filter: invert(100%);
                filter: saturate(7);
            }

            







            /*image class for the half width box*/

            .box-half-width img {
                max-width: 100%;
                height: auto;
                display: block;
                padding: 5px;

            }

            /*img class for left sidebar img*/
            .leftSideBarImg {
                width: 100%;
                height: auto;
                display: block;
                margin-top: 10px;
                z-index: 1;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                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%;
                }
                main {
                    order: 1;
               
                }

                #leftSidebar {
                    order: 2;
                    margin-right: 10px;
                }

                #rightSidebar {
                    order: 3;
                    margin-left: 10px;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }