/* user styles */

/* styles are what change the color and sizes of stuff on your site. */

/* colors */

  :root {
    --body-bg-image: url(/bgs/cooking_bg.jpg);
    --content: #FFFFFF;
  }

/*header image positioning*/

  .center {
    display:block;
    margin-left: auto;
    margin-right: auto;
    width: 35%;
  }

/*globe positioning*/

  .topleft {
    position: absolute;
    top: 8px;
    left: 16px;
  }

  @font-face {
    font-family: IBMPlexMono;
    src: url('https://ancientangel333.neocities.org/fonts/IBMPlexMono-Regular.ttf');
  }

  @font-face {
    font-family: IBMPlexMono;
    src: url('https://ancientangel333.neocities.org/fonts/IBMPlexMono-Bold.ttf');
    font-weight: bold;
  }

  @font-face {
    font-family: IBMPlexMono;
    src: url('https://ancientangel333.neocities.org/fonts/IBMPlexMono-Italic.ttf');
    font-style: italic;
  }

  @font-face {
    font-family: IBMPlexMono;
    src: url('https://ancientangel333.neocities.org/fonts/IBMPlexMono-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
  }

  body {
    font-family: 'IBMPlexMono', sans-serif;
    margin: 0;
    background-color: #FFFFFF;
    background-size: 100px;
    color: #80230B;
    background-image: var(--body-bg-image);
  }

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

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

  #container {
    max-width: 1100px;
    margin: 0 auto;
  }

/* this centers the entire page */

/* the area below is for all links on your page EXCEPT for the navigation */

  #container a {
    color: #E36419;
    font-weight: bold;
  }

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

  #header {
    width: 100%;
    background-color: none;
    height: 100px;
    background-image: var(--header-image);
    background-size: 100%;
  }

/* navigation section!! */

/* navbar color */

  #navbar {
    height: 40px;
    background-color: #B89386;
    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 text color */

  #navbar li a {
    color: #E36419;
    font-weight: 800;
    text-decoration: none;
  }

/* navigation link when a link is hovered over */

  #navbar li a:hover {
    color: #FFC670;
    text-decoration: underline;
  }

  #flex {
    display: flex;
  }

/* this colors BOTH sidebars*/

  aside {
    background-color: #DBBEAF;
    width: 250px;
    padding: 20px;
    font-size: 13px;
  }


/* this is the color of the main content area, between the sidebars! */

  main {
    background-color: #FFE2D4;
    flex: 1;
    padding: 20px;
    order: 2;
    font-size: 15px
  }

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

  h1,
  h2,
  h3 {
    color: #80230B;
  }

  h1 {
    font-size: 25px;
  }

/* this styles bold text */

  strong {
    color: #80230B;
  }

/* container box in left sidebar */
  .box {
    background-color: #FFE2D4;
    border: 1px solid #452013;
    padding: 10px;
  }

/* CSS for extras */

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

/* 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: 900px) {
  #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;
  }

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