            /* 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('https://files.catbox.moe/17pdem.jpg');
                --body-bg-image: url('https://files.catbox.moe/ehkp6u.gif');

                /* colors */
                --content: #ff0054;
            }

            /* 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!
    
    */


            
            .zain-extralight {
  font-family: "Zain", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.zain-light {
  font-family: "Zain", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zain-regular {
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zain-bold {
  font-family: "Zain", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zain-extrabold {
  font-family: "Zain", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.zain-black {
  font-family: "Zain", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.zain-light-italic {
  font-family: "Zain", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.zain-regular-italic {
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: italic;
}


.playpen-sans-arabic-thin {
  font-family: "Playpen Sans Arabic", cursive;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.playpen-sans-arabic-extralight {
  font-family: "Playpen Sans Arabic", cursive;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.playpen-sans-arabic-light {
  font-family: "Playpen Sans Arabic", cursive;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.playpen-sans-arabic-regular {
  font-family: "Playpen Sans Arabic", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.playpen-sans-arabic-medium {
  font-family: "Playpen Sans Arabic", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.playpen-sans-arabic-semibold {
  font-family: "Playpen Sans Arabic", cursive;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.playpen-sans-arabic-bold {
  font-family: "Playpen Sans Arabic", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.playpen-sans-arabic-extrabold {
  font-family: "Playpen Sans Arabic", cursive;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

@font-face {
    font-family: "rainyhearts"; 
    src: url("https://files.catbox.moe/r4oudq.ttf") format("truetype");
}


            body {
                font-family: 'zain', sans-serif;
                font-size:18px;
                margin: 0;
                background-color: white;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 100px;
                color: #4D384B;
                background-image: var(--body-bg-image);
                
            }
            
            html,body{
      user-select: none; /* supported by Chrome and Opera */
   -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */
  }
                

            * {
                cursor: url(https://cur.cursors-4u.net/nature/nat-10/nat996.cur), auto;
                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: 1080px;
                border-style: ridge;
               border-color: #ff4f89;
               border-radius: 30px;
               border-width:4px;
                /* 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: 10px auto;
                /* this centers the entire page */
            }

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

            #header {
                width: 100%;
                background-color: #5e4e8c;
                /* header color here! */
                height: 300px;
                border-top-left-radius:25px;
                border-top-right-radius:25px;
                border-bottom-color:#ff4f89;
                border-bottom-width:4px;
                border-bottom-style:ridge;
                /* 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: 100%;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: white;
                border-top:;
                /* navbar color */
                width: 100%;
                border-bottom-color:#ff4f89;
                border-bottom-width:4px;
                border-bottom-style:ridge;
            }

            #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: #ff0054;
                /* 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: #ff0054;
                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-color: white;
                width: 200px;
                padding: 5px;
                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: white;
                flex: 1;
                order: 2;
                border-left-color:#ff4f89;
                border-left-width:4px;
                border-left-style:ridge;
                font-family: "rainyhearts", cursive;
            }

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: white;
  color: #ff0054;
  text-align: center;
  border-radius: 6px;
  border:1px ridge #ff4f89;
  padding: 5px 0;
  top: 110%;
  left: 100%;
  margin-left: -60px;
  font-size:14px;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

#leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
                border-left-color:#ff4f89;
                border-left-width:4px;
                border-left-style:ridge;
                width: 295px;
            }

            footer {
                background-image: url('https://files.catbox.moe/6vg8a3.jpg');
                background-size:cover;
                /* background color for footer */
                width: 100%;
                height: 84px;
                padding: 10px;
                text-align: right;
                color:#ff0054;
                text-shadow: 1px 1px white,
                              -1px 1px white,
                              1px -1px white,
                              -1px -1px white;
                border-bottom-left-radius:25px;
                border-bottom-right-radius:25px;
                border-top-color:#ff4f89;
                border-top-width:4px;
                border-top-style:ridge;
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                color: #ff0054;
            }

            h1 {
                font-size: 25px;
            }
            
            h2
            {
              background-size: 30%;
              border-bottom-color:#ff4f89;
              border-bottom-width:4px;
              border-bottom-style:ridge;
              border-top-left-radius:27px;
              border-top-right-radius:27px;
              background: #f4a8c2;
              background: linear-gradient(0deg, #f4a8c2 0%, #f9bbd0 49%, #f9d9e4 49%, #fceaf0 100%);
              margin:0em;
            }

            strong {
                /* this styles bold text */
                color: #C81D52;
            }
            
            li
            {
              list-style-image: url('https://tomomi.neocities.org/pixeles/130.png');
              transition: 0.4s;
            }
            
            li:hover
            {
              list-style-image: url('https://tomomi.neocities.org/pixeles/37.png');
               text-size:1.1px;
               letter-spacing: 5px;
            }
            
.navigation {
                background-color: white;
                border: 3px ridge #ff4f89;
                text-align:center;
                padding:0px;
                border-top-left-radius:30px;
                border-top-right-radius:30px;
                margin:5px;
            }
            .navigation h2
            {
              margin:0px;
            }
            .navigation li
            {
             font-size:16px;
            }
            .navigation strong
            {
             color: #FF55AA;
            }

            /* this is just a cool box, it's the darker colored one */
            .updates {
                background-color: white;
                border: 3px ridge #ff4f89;
                text-align:center;
                padding:0px;
                border-top-left-radius:30px;
                border-top-right-radius:30px;
                height:200px;
                overflow-y: scroll;
                margin:5px;
            }
            .updates h2
            {
              margin:0px;
            }
            
            .site-stats {
                background-color: white;
                border: 3px ridge #ff4f89;
                text-align:center;
                padding:0px;
                border-top-left-radius:30px;
                border-top-right-radius:30px;
                overflow-y: scroll;
                margin:5px;
            }
            .site-stats h2
            {
              margin:0px;
            }
            
            .chatbox {
                background-color: white;
                border: 3px ridge #ff4f89;
                text-align:center;
                padding:0px;
                border-top-left-radius:30px;
                border-top-right-radius:30px;
                overflow-y: scroll;
                margin:5px;
            }
            .chatbox h2
            {
              margin:0px;
            }
            
.updates .site-stats .chatbox {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

            .updates::-webkit-scrollbar {
  display: none;
}

.site-stats::-webkit-scrollbar {
  display: none;
}

.chatbox::-webkit-scrollbar {
  display: none;
}


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

 ::-webkit-scrollbar {
width: 10px;
height: 10px;
}


::-webkit-scrollbar-track {
border: 2px ridge #ff72b8;
background-image: url('https://foollovers.com/mat/slantstripe02/na09-bg-slantstripe.gif');
background-size: 100px;
margin-bottom: 0px;
}


::-webkit-scrollbar-thumb {
background: #FFFFFF;
border: 2px ridge #ff72b8;
background-image: url('https://foollovers.com/mat/heart02/ga04-bg-heart.gif');
background-repeat: repeat;
}


::-webkit-scrollbar-thumb:hover {
background: #ffedf6; 
background-repeat: repeat;
}

.tg  {
  border-collapse:collapse;
  border-spacing:0;}
  
  
.tg td{
  border-color:black;
  border-style:solid;
  border-width:1px;
  font-family:Arial, sans-serif;
  font-size:14px;
  overflow:hidden;
  padding:5px 0px;
  word-break:normal;
  }
  
.tg th{
  border-color:black;
  border-style:solid;
  border-width:1px;
  font-family:Arial, sans-serif;
  font-size:14px;
  font-weight:normal;
  overflow:hidden;
  word-break:normal;
  }
  
.tg .tg-749q{
  background-color:#ffeedd;
  border-color:#ffaaff;
  border-style:ridge;
  border-width:3px;
  color:#fe0000;
  text-align:center;
  vertical-align:top;
  }
  
.tg .tg-vvgb{
  background-color:#eeffff;
  border-color:#ffaaff;
  border-style:ridge;
  border-width:3px;
  text-align:center;
  vertical-align:top;
  }
  
.tg .tg-c8v2{
  background-color:#ffccbb;
  border-color:#ffaaff;
  border-style:ridge;
  border-width:3px;
  color:#fe0000;
  text-align:center;
  vertical-align:top
  }
  
.tg .tg-kdi3{
  background-color:#ccffcc;
  border-color:#ffaaff;
  border-style:ridge;
  border-width:3px;
  text-align:center;
  vertical-align:top
  }
  
.tg .tg-2erp{
  background-color:#ffffcc;
  border-color:#ffaaff;
  border-style:ridge;
  border-width:3px;
  text-align:center;
  vertical-align:top
  }
  
  .winampholder
  {
    width:100%;
    height:389px;
    padding:5px;
    border: 3px ridge #ff4f89;
    border-top-left-radius:30px;
    border-top-right-radius:30px;
  }
  
  .winampholder h2
            {
              margin:-5px;
              text-align:center;
            }

  .fakeadbanner {
width: 100%;
border-bottom: 3px ridge #ff4f89;
border-top: 3px ridge #ff4f89;
background-image: url('https://files.catbox.moe/6c2dei.jpg');
background-size:cover;
height: 75px;
padding-top:10px;
padding-bottom:10px;
  }
  
  .fakesidead {
width: 105%;
border-top: 3px ridge #ff4f89;
border-bottom: 3px ridge #ff4f89;
background-image: url('https://files.catbox.moe/zk2fvx.jpg');
background-size:cover;
height: 445px;
margin-left:-5px;
margin-right:-5px;
margin-bottom:5px;
  }
  
#title {
  display: block;
  font-size: 3em;
  font-family: "cherishregular";
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #ff4f89;
  color: white;
  font-weight: 500;
  z-index: 9999;
  position: absolute;
  margin: auto;
  top: 260px;
  margin-left: 20px;
 -webkit-animation: pop 1s ease-in-out infinite alternate;
 animation: pop 1s ease-in-out infinite alternate;
 -moz-animation: pop 1s ease-in-out infinite alternate;
  animation-name: floating;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  }

 @keyframes floating {
    0% {
      transform: translate(0, 0px);
    }

    50% {
      transform: translate(0, 6px);
    }

    100% {
      transform: translate(0, -0px);
    }
    
    
}

@font-face {
  font-family: 'cherishregular';
  src: url('https://files.catbox.moe/x4wgek.ttf') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.cherishregular {
  font-family: 'cherishregular', -apple-system, BlinkMacSystemFont, sans-serif;
}