            /* 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://sadhost.neocities.org/images/layouts/wp.jpeg');
                --body-bg-image: url('../images/namek-bg.webp');
				
				

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

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

            body {
                font-family: 'Montserrat', sans-serif;
                margin: 0;
                background-color: #08031A;
                /* you can delete the line below if you'd prefer to not use an image */
				background-image: var(--body-bg-image);
                background-repeat: no-repeat;
				background-position: center;
				background-size: cover;
				background-attachment: fixed;
				
				
            }

            * {
                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: 900px;
                /* 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 */
				z-index:1000;
            }

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

            #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: 100%;
				
			}

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #008a1a;
                /* 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: #67f4a0;
                /* 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: #9ab79c;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }
			
			#headerArea {
				position: sticky;
				top: 0;
				filter: drop-shadow(0px 3px 2px);
			}

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #241445;
                width: 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-color: #43256E;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            /* 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: #13092D;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
				border-radius: 0 0 10px 10px;
            }

            h1,
            h2 {
                color: #FFFFFF;
            }
            h3 {
                color: #009444;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: #009444;

            }
			
			a:hover {
				color: white;
}
			
			main p {
    color: #FFFFFF; /* Replace with your desired color, e.g., #333333 */
}

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #13092D;
                border: 1px solid #67f48c;
                padding: 10px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #13092D;
            }
			
			.ep {
				width: 100%;
				background-color: #301a4e;
				border-radius: 10px;
				padding: 1em;
				padding-left: 2em;
				
			}
			.ep-thumb {
				float:right;
				border-style: solid;
				border-color: #009444;
				padding: 2px;
				margin-left: 2em;
			}
			
			.avi {
				float: right;
				margin-left: 2em;
			}

#footer {
    color: #FFFFFF; /* Replace with your desired color */
}

            /* 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;
                }
            }
#dr-gero-sticker {
    position: fixed;
    bottom: 0;         /* Sticks to the bottom of the window */
    right: 20px;       /* Offsets it to the right side; adjust as needed */
    z-index: 100;      /* Ensures it stays on top of other elements */
    width: 100px;      /* Set a width that fits your design */
    height: auto;
    pointer-events: none; /* Optional: allows users to click "through" it if it covers links */
}

@media (max-width: 800px) {
    #dr-gero-sticker {
        display: none; /* Hides the image on narrow screens */
    }
}

#page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 140vw;
    height: 5vh;
    
    /* Link your graphic here */
    background-image: url('/images/under-construction.webp'); 
    
    background-size: cover;
    background-position: center;
	
	transform: rotate(-25deg); 
    transform-origin: top right;
    
    /* Ensures it sits on top of everything else */
    z-index: 1; 
    
    /* Allows you to click links/text underneath the graphic */
    pointer-events: none; 
    
    /* Optional: adjust transparency if you want to see the site through it */
    opacity: 1; 
}

	/*lite-youtube CSS */

.lite-youtube-fallback {
	aspect-ratio: 16 / 9; /* matches YouTube player */
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 1em;
	padding: 1em;
	background-color: #000;
	color: #fff;
	text-decoration: none;
}

/* right-facing triangle "Play" icon */
.lite-youtube-fallback::before {
	display: block;
	content: '';
	border: solid transparent;
	border-width: 2em 0 2em 3em;
	border-left-color: red;
}

.lite-youtube-fallback:hover::before {
	border-left-color: #fff;
}

.lite-youtube-fallback:focus {
	outline: 2px solid red;
}

.styleIt {
    width: 400px;
    margin: left;
  }
  
  /* Modify Scrollbar behavior */
  
  html {
  scrollbar-gutter: stable;
}

/* Audio Player */

lol {}
  
  lol,
  .img2 {
    /* album's cover image u can change the size! */
    position: relative;
    width: 100px;
    height: 100px;
    background-color: black;
    color: black;
    z-index: 999;
  }

  .img1 {
    /* cd image u can change the size too */
    position: absolute;
    width:auto;
    height:90px;
	top: 215px;
    left: 180px;
    z-index: 800;
    -webkit-animation: spin 2s linear infinite;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
  }

  .img1 hover {
    cursor: help;
  }

  @-moz-keyframes spin {
    100% {
      -moz-transform: rotate(360deg);
    }
  }

  @-webkit-keyframes spin {
    100% {
      -webkit-transform: rotate(360deg);
    }
  }

  @keyframes spin {
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  .img1:hover {
    /* this makes the cd stop spinning when hovering! */
    -webkit-animation: pop 0.3s ease;
  }
  
  p.sum {
	  text-indent: 2em;
  }
  
  .hosts {
	  padding-left: 1em;
	  padding-right: 1em;
  }