/* CSS (Cascading Style Sheets) is how you can add style to your website such as colors, fonts, and positioning of your
   HTML content. */

/* #CONTAINER is the rectangle that contains everything but the background! */
#container {
    margin: 3px auto;
    width: 100%;
    height: auto;
	  max-width: 800px;
	  background-color: transparent;
    color: #151515; 
    outline-color: white;
    outline-style: double;
    outline-width: 10px;
    outline-offset: 5px;
    flex-direction: column;
    align-items: center;
    }

/* HEADER */
      header {
         background color: transparent;
         background-image: "../images/headerlogo.png";
         text-align: center;
      }

/*FOOTER STYLE*/
      #footer {
        font-size: 2px;
        padding: 2px 5% 5px 5%;
        text-align: center;
      }
 
/* BODY LAYOUT */
      .column {
        float: none;
      }
  
/* SIDEBAR NAVIGATION */
      .left {
        width: 25%;
        position: sticky;
        padding: 2%;
        text-align: right;
      }
  
/* MAIN PAGE CONTENT */
      .middle {
       width: 70%;
      }
 
#content {
  text-align: center;
}

/* BODY STYLE */
      body {
        background-color: black;
        background-image: url('../images/bg_diamond_red.png');
      	background-position: top;
        font-size: 18px;
        font-family: Georgia, "Times New Roman", serif;
        margin: 0;
      }

p {
  color: white;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1px;
}

hr {
  border-top: 1px dashed #E63974;
  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: #E63974;
  color: white;
}

h1, h2, h3, h4, h5 {
  font-family: Tahoma, Geneva, sans-serif;
  color: #E63974;
}

/*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;
/*}
