/* 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." */
   
/* Last updated at 4 in the afternoon, 6/15/2026 */

/* This file sometimes takes a lot of time to update, so don't worry if you're still waiting for it to work. There's lots of website to update all the time!*/

body {
  font-family: Garamond, serif;
  background-image:url('/images/steampunkskeleton.png');
}

h1 {
  font-size:250%;
  margin:2%;
}
  
h2 {
  font-size:180%;
  margin:2%;
}

h3 {
  font-size:150%;
  margin:2%;
}

h4 {
  font-size:130%;
  margin:2%;
}

ul {
  font-size:100%;
  margin:2%;
}

ol {
  font-size:100%;
  margin:2%;
}

p {
  font-size:100%;
  margin:2%;
}

div.bodyandsidebar {
  width:95%;
  margin:auto;
  overflow:auto;
}
div.bodyandsidebar div {
 float:left;
 background-color:rgba(230,240,230,0.9);
 border:2px solid rgba(180,180,180,0.95);
}
    
/* Style the header */
header {
  background-color:rgba(230,240,230,0.9);
  padding: 2px;
  text-align: center;
  width: 95%;
  margin: auto;
}

/* Create two columns/boxes that floats next to each other */
nav {
  float: left;
  padding: 2px;
  width: 18%;
  background-color:rgba(230,240,230,0.9);
  border:2px solid rgba(180,180,180,0.95);
  margin: 1%;
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
}

article {
  float: left;
  padding: 2px;
  width: 76.5%;
  background-color:rgba(230,240,230,0.9);
  border:2px solid rgba(180,180,180,0.95);
  margin: 1%;
}

section {
  width: 95%;
  margin: auto;
}

/* Clear floats after the columns */
section::after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
footer {
  background-color: #777;
  padding: 10px;
  text-align: center;
  color: white;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
  nav, article {
    width: 95%;
    height: auto;
  }
}