body {
  background-color: #436a7b;
  background-image: url('./images/bg_y2k.png');
	background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-size: 18px;
  margin: 0;
}

p {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

hr {
  border: solid #c7b591;
  border-width: 2px 0 0 0;
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .small {
    max-width: 60%;
    height: auto;
  }
}
.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}

a:hover { 
  background-color: #fff6e6;
}

h1, h2, h3, h4, h5 {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  color: #34436f;
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  font-family: "Anta", sans-serif;
  margin: 3em auto;
  width: 90%;
	max-width: 900px;
	background-color: #f1e3c9;
  color: #000000; 
  outline-color: #000000;
  outline-style: solid;
  outline-width: 4px;
  outline-offset: 0;
  border-radius: 15px;
  background-image: url(./images/bg_container.png);
  background-repeat: no-repeat;
  background-size: 15%;
  background-position-x: 109%;
}

#content {
  padding: 0% 5% 20px 5%;
}

/*HEADER STYLE*/
#header {
  font-family: "Audiowide", sans-serif;
  background-color: #000000;
  padding: 0% 5%;
  height: 5.5vh;
  clip-path: polygon(0% 0%, 100% 0%, 100% 97%, 85% 97%, 81% 70%, 0% 70%);
  border-radius: 5px;
  border-color: #000000;
  border-style: solid;
  border-width: 0 0 0px 0;
}
#header ul {
  display: flex;
  gap: 1em;
  list-style-type: none;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}
#header li a {
  margin-top: 20%;
  padding-left: 2em;
  padding-right: 0.5em;
  color: white;
  text-decoration: none;
  background-color:  #436a7b;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 50%, 15% 50%);
}
#header li a:hover {
  background-color: #f1e3c9;
  color: black;
  text-decoration: underline;
}
#header li p {
  font-family: "Bitcount Grid Double", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: 100px;
  margin-top: 2%;
  padding-left: 2em;
  padding-right: 0.5em;
  color: white;
  text-decoration: none;
  background-color:  #000000;
  width: 5em;
}

/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
#recentpostlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
.moreposts {
  font-size: 0.8em;
  margin-top: 0.2em;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

/*FOOTER STYLE*/
#footer {
  font-family: "Anta", sans-serif;
  background-color: #000000;
  color: white;
  padding: 0% 5%;
  height: 5vh;
  font-size: 0.8em;
  clip-path: polygon(0% 20%, 81% 20%, 85% 50%, 100% 50%, 100% 100%, 0% 100%);
  border-radius: 10px;
  border-color: #000000;
  border-style: solid;
  border-width: 0 0 0px 0;
}