/* 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." */

body {
  background-color: black;
  background-image: url('../../graphics/water.gif');
	background-position: top;
  image-rendering: pixelated;
  font-family: courier new;
  font-size: 13px;
  color: #eeeeee;
}

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;
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 90%;
	max-width: 600px;
	background-color: black;
  border: 4px ridge #900008;
    border-radius: 10px;
}

.content {
  border: 2px solid #900008;
  margin: 10px;
  text-align: justify;
}

#fakeheader {
  background-color: black;
  margin: 10px;
  border: solid #900008 2px;
    border-radius: 5px 5px 0 0;
}

/*HEADER STYLE*/
#header {
  text-align-last: justify;
}

/*POST LIST STYLE*/
#postlistdiv ul {
  list-style-type: none;
}
#recentpostlistdiv ul {
  list-style-type: none;
}
.moreposts {
  font-size: 0.8em;
  margin-top: 0.2em;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  text-align: center;
  margin: 10px;
}

/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

/*FOOTER STYLE*/
#footer {
  margin: 10px;
  border: 2px solid #900008;
    border-radius: 0 0 5px 5px;
  text-align: center;
}