            /* user styles */
            @import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');
            @import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap');

            /* 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 */
                --header-image: url('https://files.catbox.moe/z23kho.png');
              /* Backround Image */
                --body-bg-image: url('https://gifcity.carrd.co/assets/images/gallery128/b09fff88.gif?v=e3c0bc0f');
                --main-borders:3px solid blue;

                /* colors */
                --main-color: #00166b;
                --content: #43256E;
                --box-bg: #030303;
            }
 
            /* 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!
    
    */

 

            body {
                font-family: 'Jersey 10', sans-serif;
                margin: 0;
                background-color: #08031A;
                /* you can delete the line below if you'd prefer to not use an image */
                color: #ffffff;
                background-image: var(--body-bg-image);
                background-size:10%;
                line-height: 1;
                text-align: center;
                font-size:20px;
            }

            * {
                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;
                /* 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;
                margin-top:20px;
                /* this centers the entire page */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #033eff;
                font-weight: bold;
                text-decoration: none;
                margin-top:20px;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }
            /* Buttons f websites i like */
            .buttons-home {
                position: fixed;
                z-index: 999999000;
                margin-top: 500px;
                margin-left: 1150px;
                width:50px;
                height:100px;
                background:red;
                border:white solid 3px;
            }
            /* Div for marques */
            .maruqee-box {
                background-image:url('https://user.uploads.dev/file/4fac1fc47dda14687ac3804e2a5506e5.gif');
                background-size:10%;
                border:4px double blue;
                width:620px;
                padding:2px;
            }
            

            #header {
                background-color: #5e4e8c;
                /* header color here! */
                height: 270px;
                width: 1085px;
                border: var(--main-borders);
                /* 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%;
                background-attachment: cover;
                margin:auto;
                margin-top:20px;
            }

            /* navigation section!! */
            #navbar {
                height: 42px;
                /* navbar color */
                width: 1090;
                font-size: 25px;
                padding-right: 12px;
                padding-bottom: 60px;
            }
            
   
            

            #navbar ul {
                display: flex;
                padding: 0px;
                margin: -13;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 12px;
            }

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

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

            #flex {
                display: flex;
                margin-top: 30px;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: var(--main-color);
                width: 200px;
                padding: 20px;
                font-size: smaller;
                border: var(--main-borders);
                outline-offset: 100px;
                text-align: center;
                /* this makes the sidebar text slightly smaller */
            }
            .portrait-img {
                width: 32% !important;
                padding:5px;
            }
            
            .landscape-img {
                width: 48.4% !important;
                padding:5px;
                
            }
            
            #navbar-button {
                width: 120px !important;
                height:42px !important;
                border:white solid 2px !important;
                
            }
            

            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: var(--main-color);
                flex: 1;
                padding: 10px;
                order: 2;
                border:var(--main-borders);
            }

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


            h1 {
                font-size: 35px;
                text-align: center;
                font-size: 50px;
                padding:0px;
            }
            
            h2 {
                font-size: 35px;
                text-align: center;
                font-size: 25px;
            }
            
            h3 {
                font-size: 35px;
                text-align: center;
                font-size: 20px;
            }

            strong {
                /* this styles bold text */
                color: #aee3f8;
                outline: 5px solid white;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: var(--box-bg);
                border: 3px dashed #033eff;
                padding: 15px;
                line-height: 1.5;
            }
            .blinkie {
                width:170px !important;
                height:40px !important;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #0a0f30;
                border: 2px solid #ffffff;
                border-style: dashed;
            }


            /* 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;
                }
            }
            
            /* Shaking Animation*/
            @keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px) rotate(-1deg); }
  50% { transform: translateX(4px) rotate(1deg); }
  75% { transform: translateX(-4px) rotate(-1deg); }
  100% { transform: translateX(0); }
}

.apply-shake {
  animation: shake 0.15s ease-in-out;
}


/* W98 Style*/

#win98-window {
  position: absolute;
  z-index: 9;
  top: 230px;  
  left: 1180px;
  background-color: #c0c0c0;
  width: 325px;
  /* The 3D Bevel Effect */
  border: 2px solid;
  border-color: #ffffff #808080 #808080 #ffffff;
  padding: 2px;
  font-family: "MS Sans Serif", Arial, sans-serif;
  transform: rotate(3deg);
}

#win98-titlebar {
  padding: 3px 5px;
  cursor: move;
  z-index: 10;
  background: linear-gradient(90deg, #000080, #1084d0);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

#win98-content {
  padding: 0px;
  background-color: #c0c0c0;
  margin-top: 2px;
  border: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080; /* Inset effect */
  min-height: 100px;
}

.win98-btn {
  background-color: #c0c0c0;
  border: 1px solid;
  border-color: #ffffff #404040 #404040 #ffffff;
  padding: 0 4px;
  font-size: 10px;
  cursor: pointer;
}

.win98-btn:active {
  border-color: #404040 #ffffff #ffffff #404040;
}

/* music player*/
#music-player {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--main-color);
    border:var(--main-borders);
    color: white;
    padding: 10px 20px;
    border-radius: 0px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 30px; /* Space between title and controls */
}

.player-left {
    min-width: 120px;
}

#track-title {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.player-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.controls button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0 5px;
}

.volume-container {
    display: flex;
    align-items: center;
}

/* Styling the volume slider */
#volume-slider {
    width: 110px;
    cursor: pointer;
    accent-color: #7E7E7E;; /* Optional: Spotify-style green */
}

/*Image Bubbls */

/* This makes the container hug the image tightly */
.image-wrapper {
  position: relative;
  display: inline-block;
  margin: 10px;
}

/* This is the bubble */
.image-wrapper .tooltip {
  /* Positioning */
  position: absolute;
  bottom: 100%; /* Sits right on top of the image */
  left: 50%;
  transform: translateX(-50%) translateY(0);
  
  /* Look & Feel */
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap; /* Keeps text from wrapping */
  
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  
  /* This ensures it stays on top of everything */
  z-index: 99;
}

/* THE HOVER TRIGGER */
/* When you hover the WRAPPER, show the TOOLTIP inside it */
.image-wrapper:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px); /* Slight lift effect */
}