:root {
  --header-image: url('supervixen.gif');
  --body-bg-image: url('https://sadhost.neocities.org/images/tiles/purplesky.gif');
/* colors */
  --content: white;
}


@font-face {
  font-family: Toronto;
  src: url(/fonts/torontofinal.ttf);
}

html {
  cursor: url("/cursors/arrow.png"), default;
}

a {
  cursor: url("/cursors/hand.png"), default;
}

body {
  font-family: 'Toronto';

  margin: 0px;
  background-color: #FBFCFB;
  /* you can delete the line below if you'd prefer to not use an image */
  background-size: 65px;
  /* background-image: var(--body-bg-image); */
  cursor: url("/cursors/arrow.png"), auto;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

* {
  box-sizing: border-box;
}

/* below this line is CSS for the layout */

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

#container-archive {
  max-width: 800px;
  /* 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 {
  color: black;
  
  
  /* if you want to remove the underline
  you can add a line below here that says:
  text-decoration:none; */
}

#header {
  width: 100%;
  /* header color here! */
  flex-shrink: 0;
  padding-top: 2%;
  /* 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%;
}

#header-img-main {
  max-width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  width: auto\9; /* ie8 */
}

#header-img {
  max-width: 35%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  width: auto\9; /* ie8 */
}

/* navigation section!! */
#navbar {
  height: 45px;
  /* navbar color */
  width: 100%;
  
}

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

#navbar li {
  padding: 5px 10px 10px 10px;
  position: relative;
  
}

/* navigation links*/
#navbar li a {
  color: #000000;
  /* navbar text color */
  font-weight: 800;
  font-family: 'Jacquard 24', system-ui;
  font-size: 20px;
  text-decoration: none;
  /* this removes the underline */
}

/* navigation link when a link is hovered over */
#navbar li a:hover {
  color: #880808;
  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 10px 10px 10px;
  font-size: smaller;
  border: 1px dashed black;
  margin-left: 10px;
  margin-right: 10px;
  /* this makes the sidebar text slightly smaller */
}


/* this is the color of the main content area,
between the sidebars! */
main {
  flex: 1;
  padding: 10px;
  padding-left: 20px;
  order: 2;
  border: 1px dashed black;

}

/* 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 for footer */
  width: 100%;
  font-size: 14px;
  height: 30px;
  padding-top: 3px;
  text-align: center;
  
  /* this centers the footer text */
}

#bomb {
  width: 20px;
}


h1,
h2,
h3 {
  color: black;
  padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}

p, ul {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}


h1 {
  font-size: 25px;
  font-family: 'Jacquard 24', system-ui;
}

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

/* this is just a cool box, it's the darker colored one */
.box {
  padding: 0px;
}

/* CSS for extras */

#topBar {
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: smaller;
}


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

  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;
  }
  
  #navbar {
    height: 60px;
  }
  
  #navbar li {
    padding: 5px 10px 10px 10px;
    position: relative;
  }
  
  
  aside {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 10px;
  }
  
  #leftSidebar {
    order: 2;
  }

  #rightSidebar {
    order: 3;
  }

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