:root {
--body-bg-image: url('https://64.media.tumblr.com/010c46067b29b710ce9a508fb4171dfb/tumblr_inline_n1ubnjJXdz1qmvw6b.gif');
--content: #E6EDF5;
}

@font-face {
  font-family: dusk;
  src: url('https://gastrapod.neocities.org/font/dusk.woff2');
}

@font-face {
  font-family: gloom;
  src: url('https://gastrapod.neocities.org/font/gloom.woff2');
}

@font-face {
  font-family: disposabledroid;
  src: url('https://gastrapod.neocities.org/font/disposabledroid-REG.ttf');
}

body {
  font-family: 'disposabledroid', sans-serif;
  margin: 0;
  background-color: #fcf3eb;
  background-size: 150px;
  color: #fcf3eb;
  background-image: var(--body-bg-image);
}

.dusk {
  font-family: 'dusk', sans-serif;
}

.gloom {
  font-family: 'gloom', sans-serif;
}

.user-text {
  font-family: 'disposabledroid', sans-serif;
}

/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your HTML content. To learn how to do something, just try searching Google for questions like "how to change link color." */
/* these are variables that are being used in the code these tended to confuse some people, so I only kept  the images as variables */

ul {
  
  list-style-type: none; /* this removes the bulletpoints */
  /* there is an annoying left padding in the ul element by default */
  padding-left:0; /* this removes it */
}

li a {
  display:inline-block; /* this allows us to add margin to each item 
                           so there's space for it to rotate */
  margin:5px;
}

/* this makes stuff happen when you hover! */
li a:hover {
  transform:rotate(-10deg); /* play with this 15deg value, works w/ negatives too! */
  /* more CSS transform options: https://developer.mozilla.org/en-US/docs/Web/CSS/transform */
}

* {
  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: 1000px;
  margin: 0 auto;
}

/* the area below is for all links on your page EXCEPT for the navigation */
#container a {
  color: #f6d233;
  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; */
}

#header {
  width: 100%;
  background-color: #322b64;
/* 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: #322b64;
/* 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: #322b64;
/* 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: #322b64;
  text-decoration: underline;
}

#flex {
  display: flex;
}

/* this colors BOTH sidebars if you want to style them separately, create styles for #leftSidebar and #rightSidebar */
aside {
  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: #544c8d;
  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;
  background-color: #fff0af;
}

#rightSidebar {
  order: 3;
  background-color: #fff0af;
}

footer {
  background-color: #322b64;
/* background color for footer */
  width: 100%;
  height: 40px;
  padding: 10px;
  text-align: center;
/* this centers the footer text */
}

h1,
h2,
h3 {
  color: #99c4d5;
}

h1 {
  font-size: 25px;
}

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

/* this is just a cool box, it's the darker colored one */
.box {
  background-color: #016d9e;
   border: 1px solid #0b4866;
  padding: 10px;
}

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

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

.sitebox {
    background-color: #544c8d;
    border: 1px solid #322b64;
    padding: 5px 5px 5px 15px;
    overflow-y: auto;
    max-height: 300px;
}
ul {
    list-style-image: url("https://pixelsafari.neocities.org/favicon/nature/star/star103.gif");
}
ul ul {
  list-style-type: none;
   margin-left: -10px;
}

ul ul li:before {
  content: "↪"; /* Replace with desired arrow character or image */
  margin-right: 4px; /* Adjust spacing as needed */
}

/* Base styling with a smooth animation transition */
.click-effect {
  width: 500px;
  transition: transform 0.1s ease, filter 0.1s ease;
  cursor: pointer;
}

/* Effect triggered exactly when pressed */
.click-effect:active {
  transform: scale(0.95); /* Shrinks the image slightly */
  filter: brightness(0.8); /* Dims the image slightly */
}

  .floated-image {
    float: right;          /* Pushes image left, pulls text up to the right */
    margin-right: 15px;   /* Prevents the text from touching the image */
    margin-bottom: 10px;  /* Adds space below the image */
    width: 70px;
  }
.card {
  display: flex;
  margin-bottom:20px;
}
.card-about {
  display: flex;
  flex-direction: column;
  margin-bottom:10px;
}
.fit-image {
  width: 550px; 
  height: 380px; 
  align-items: center;
  justify-content: center;
  display: flex;
}
.scrollbox {
    background-color: #016d9e;
    border: 1px solid #0b4866;
    padding: 5px;
    overflow-y: auto;
    max-height: 150px;
    flex-grow: 1;
}

.mobiledisplay {
        display: none;
}

/*
Source - https://stackoverflow.com/questions/59428035/how-to-implement-nested-collapsibles
Posted by null
Retrieved 2026-08-23, License - null
*/

.collapsible {
  background-color: #322b64;
  color: #f6d233;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #282143;
}

.collapsible-content {
  padding: 0 18px;
  background-color: #322b64;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.collapsible:after {
  content: '+'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #fff8c6;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "-"; /* Unicode character for "minus" sign (-) */
}

    .stars {
    border-image:  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAgElEQVQ4T+1U0QrAIAicf96fOxwoV1hdgwYb603T07tSOTYcQcyiqkUkfGb3arZxaA9BWRJtMxdo1hFW7nabMLG8lCoD6IWwIc+rQM3ZUplJ4PGYV2k6A2DvQ9MVyiONQ9NVyj9oqoDL+LKHYv8fG7dvoeAc3xmCj24pZvM/tqVOKDigFri9CrAAAAAASUVORK5CYII=') 7 /  7px / 0 round;
    border-width:  7px;
    border-style:  solid; 
  }
  
  
  
  