/* 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." */

/* SITE LAYOUT */

* {box-sizing: border-box;}

header {
  padding-top: 10px;
  font-size: 30px
}


body {
  background-image: url("red star tile.gif");
  color: #ac3232;
  font-family: Courier;
  font-size:16px;
}

#container {border: 3px solid #ac3232}

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

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

#header {
  width: 100%;
  background-color: #05050e;
  /* 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 {
  overflow: hidden;
  height: 40px;
  background-color: #000;
  border-bottom: 1px solid #ac3232;
  /* 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: #dd2488;
  /* navbar text color */
  font-weight: 800;
  text-decoration: none;
  /* this removes the underline */
}

/* navigation link when a link is hovered over */
a:hover {
  color: hotpink;
  text-decoration: underline;
}


#flex {
  display: flex;
}

.iframe {height:664.867px;}

/* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
aside {
  background-color: #05050e;
  width: 200px;
  padding: 10px;
  font-size: 16px;
  /* this makes the sidebar text slightly smaller */
}

#updateScroll {
  border: 1px solid #ac3232;
  overflow-y: scroll;
  background-color: black;
  scrollbar-color: #ac3232;
  height: 400px;
  width: 430;
}

#webringScroll {
  border: 1px solid #ac3232;
  overflow-y: scroll;
  height:300px;
  width:347px;
}

.float-child {float:left; padding:5px;}

#todo {
  height:240px;
  width:180px;
  border:1px solid black;
  background-color: black;
}



#statusbox {
    padding: .5em;
    background-color: black;
    border: 1px solid #b207cc;
    color: #b207cc;
}
#statusdate, #statusfeeling {
    margin-bottom: .5em;
    font-weight: bold;
}


/* this is the color of the main content area,
between the sidebars! */
main, iframe {
  background-color: #000;
  flex: 1;
  padding: 20px;
  order: 2;
  border: 1px solid black;
  scrollbar-color: #ac3232;
}

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

#leftButtons {
  position:absolute;
  bottom:0;
  height:35px;
  width:100%;
}

#rightSidebar {
  order: 3;
  position:relative;
}

#rightButton {
  position:absolute;
  bottom:2;
}

#moonphase {
  position:absolute;
  bottom:0;
}

#buttons {overflow-y: scroll; border: 0px;}
#buttons a {text-align: center;}

footer {
  background-color: rgb(0, 0, 0);
  /* background color for footer */
  width: 100%;
  height: 90px;
  text-align: center;
  border-top: 1px solid #ac3232;
  /* this centers the footer text */
}

h1,
h2,
h3 {
  color: #dd2488;
}

h1 {
  font-size: 25px;
}

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

mark {
  background-color: #2b062d;
  color: #dd2488;
}

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

/* CSS for extras */

#topBar {
  width: 100%;
  height: 30px;
  padding: 10px;
  font-size: large;
  background-color: #000;

}


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


  
  
  
  
  