body {
  background-color: #606C38;
  font-size: 1.2em;
  margin: 0;
  color: #FEFAE0;
  font-family: Ubuntu, Verdana, Geneva, Tahoma, sans-serif;
  text-transform: lowercase;
  animation: .25s fade;
}

a, a:visited {
  color: #fae485;
  text-decoration: underline;
  font-size: 1.2em;
}
a:hover {
  text-decoration: underline;
  color: #dbc067;
  font-size: 1.2em;
}

/* don't change this to html or body, it breaks and idk why */
* {
  box-sizing: border-box;
}

img#banner {
  margin-bottom: -2px;
}

img#notfound {
  margin: auto;
  display: block;
  background-color: #1e2c17;
}

aside {
  background-color:#33441e;
  margin: 0;
  max-width: 120px;
  /* width: 100%; */
  text-align: center;
}

aside header {
  background-color:#2c3a1a;
  padding: 10px;
  font-size: large;
  color:#DDD345;
  border-bottom: 1px solid #606C38;
}

aside div {
  padding: 5px;
  font-size: medium;
}

a img:hover {
  opacity: 0.75;
  animation: .25s fadeOnHover;
}

#container {
  max-width: 900px;
  margin: 0 auto;
  width: 90%;
}

#navbar {
  background-color:#2c3a1a;
  width: 100%;
  font-weight: bold;
  outline-width: 2px;
  outline-style: solid;
  outline-color: #7e8a3a;
}
#navbar ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}
#navbar li {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 1.2em;
  display: inline-block;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}
#navbar li a, #navbar li a:visited {
  color: #DDD345;
  text-decoration: none;
  padding: 3px;
}
#navbar li a:hover {
  color: #ffe078;
  text-decoration: none;
}

#flex {
  display: flex;
}

article {
  padding: 10px 5% 20px 5%;
  background-color: #3a4e22;
  outline-style: none;
  width: 100%;
}

footer {
  background-color: #6b7a3b;
  width: 100%;
  padding: 10px;
  text-align: center;
  outline-style: none;
  line-height: 1.8em;
}

h1, h2, h3, h4 {
  color: #DDD345;
}

hr {
  border: solid #ecb235;
  border-width: 1px 0 0 0;
}

blockquote {
  padding: 1px 20px;
  margin-left: 0;
  border-left: 2px dotted #D59336;
  font-size: 1.1em;
  line-height: 1.1em;
  background-color: #BC6C25;
}

img {
  max-width: 100%;
  height: auto;
}

ul.none {
    padding: 0;
    list-style-type: none;
}

/* Alignment classes */
.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

/* Recent Blog Posts block in index.html */
#recentPostList ul {
  padding: 0;
  list-style-type: none;
}

/* Date/tags bar at the top of blog posts */
.postMetadata {
  background-color: #606C38;
  width: 100%;
  padding: 5px;
  text-align: center;
  outline-width: 1px;
  outline-style: solid;
  outline-color: #DDD345;
  border-radius: 10px;
}

/* At the bottom of blog posts */
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

@media only screen and (max-width: 800px) {
  #flex {
    flex-wrap: wrap;
  }
  #navbar ul {
    flex-wrap: wrap;
    }

  aside {
    display: none;
  }
}

/* Go To Top button */
#topBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline-width: 2px;
  outline-style: solid;
  outline-color: #DDD345;
  background-color: #273f1c;
  color: #FEFAE0;
  cursor: pointer;
  padding: 15px;
  font-size: 18px;
  font-family: "Courier New", sans-serif;
}
#topBtn:hover {
  color: #eee7b9;
  background-color: #3C8452;
}

img#artconomy {
  max-height: 100px;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOnHover {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.75;
  }
}