
@font-face {
  font-family: Daydream;
  src: url("Daydream.otf");
}

@font-face {
  font-family: Qaaxee;
  src: url("Qaaxee.ttf");
}




body {
  font-family: "Qaaxee";
  margin: 0;
  background-color: black;
  /* you can delete the line below if you'd prefer to not use an image */
  color: #FFF099;
  background-image: var(--body-bg-image);
}

* {
  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;

}

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


/* navigation section!! */
#navbar {
  height: fit-content;
  width: 100%;
  border-radius: 25px;
}

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

#navbar li {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* navigation links*/
#navbar li a {
  font-weight: 800;
  font-size: 12px;
  text-decoration: none;
 /* this removes the underline */
  font-family: Daydream;
}

/* navigation link when a link is hovered over */
#navbar li a:hover {
  font-style: italic;
}

#flex {
  display: flex;
}


aside {
  width: 200px;
  padding: 20px;
  font-size: smaller;
  border-radius: 25px;
  height: fit-content;
    position: -webkit-sticky;
  position: sticky;
  top: 0;
}


main {
  flex: 1;
  padding: 20px;
  order: 2;
  border-radius: 25px;
text-align: center;}

ul{
  text-align: justify;
}

/* 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 {
  width: 100%;
  height: 40px;
  padding: 10px;
  text-align: center;
  margin: 0 auto;
  font-family: Daydream;
text-shadow: 0 0 3px #0000;
}

h1,
h2,
  font-family: Daydream;
}

h1 {
  font-size: 25px;
  
}

h2 {
  font-size: 20px;
  font-style: italic;
}
h3{ font-size: 20px;}

.box {
  padding: 10px;
  border-radius: 25px;
  overflow-x: scroll;
  height: 100px;
}



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

  #leftSidebar {
    order: 1;
  }

  #rightSidebar {
    order: 3;
  }

  #navbar ul {
    flex-wrap: wrap;
  }
}


.button {
  padding:5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 16px;
  font-family: Qaaxee;
}

.collapsible {
  background-color: #FFF36B5;
  color: #FF4A91;
  cursor: pointer;
  padding: 5px;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
  font-size: 25px;
  border-radius: 25px;
  font-family: Daydream;
}


.content {
  font-family: Qaaxee;
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: transparent;
    text-align: center;
}

.boxes {
    position: relative;
}

.overlay-text {    font-family: Daydream;
font-size:20px;
  position: absolute;
top: -20px; /* Adjust as needed */    
left: 0px; /* Adjust as needed */    
color: #6BB5FF;
 text-shadow: 0 0 10px white;
padding: 5px;}