  background-color: #1A1A1D;

/* 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." */

@font-face {
    font-style: normal;
    font-weight: 400;
}

body {
  background-image: url("checker.jpg");
  font-size: 18px;
  font-family: serif;
  height:100%;
  margin:0;
  padding:0;
  color: #AE445A;
}

div{
  display:inline-block;
  padding:0px;
}

hr {
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  color: #303030;
}

p {
  line-height: 1.5em; /*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;
}

.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}

#footer {
  background-color: #1A1A1A;
  width:100%;
  height: 50px;
  bottom: 0px;
  position:fixed;
  padding: 5px 0px 0px 0px;
  z-index: 1; /* Stay on top */
  text-align:center;
  border-top-style:solid;
  border-color:white;
}

/*HEADER STYLE*/
#header {
  background-color: #000055;
  width:100%;
  height: 64px;
  position:fixed;
  padding: 5px 0px 0px 0px;
  z-index: 1; /* Stay on top */
  text-align:center;
  border-bottom-style:solid;
  border-color:white;
}
#header ul {
  list-style-type: none;
  padding: 0.25em 0;
  margin: 0;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.4em;
  font-weight:bold;
}
#header li a {
  color: white;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: underline;
}

/*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-size: 0.8em;
  padding: 0 5% 10px 5%;
}


@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}
@keyframes antirotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(-359deg);
	}
} 
 
 
 * {
   box-sizing: border-box;
 }
 
 .row {
   margin-left:15vw; 
   margin-right:15vw;
   overflow: hidden;
 }
 
 /* Create three unequal columns that floats next to each other */
 .column {
   float: left;
   border-style: double;
   background-color: #EEEEEE;
   border-color: #111111;
   color: #222222;
   margin-bottom: -10000px;
   padding-bottom: 10000px;
   overflow:hidden;
 }
 
 .left {
   width: 22vw;
   text-align:center;
   overflow:hidden;
   
 }
 
 .middle {
   width: 48vw;
   overflow:hidden;
 }
 
/* .right {  */
/*   text-align:center;*/
/*   width: 20.75vw;*/
/*   display: table-cell;*/
/* }*/
 
 /* Clear floats after the columns */
 .row:after {
   content: "";
   clear: both;
 }
 
 .banner {
   padding-top:60px;
 }

 @media screen and (max-width: 1000px) {
   column {
     margin-bottom: 0px;
     padding-bottom: 0px;
   }
   .row {
     margin-left:0vw;
     margin-right:0vw;
   }
   .left, .middle{
     width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
     float: left;
     }
  
   .left {
     text-align:center;
   }
/*   .right{*/
/*     text-align:center;*/
/*     width:100%;*/
/*   }*/
 }
 
 a:link {
  text-decoration: none;
}

 a:visited {
   color: #0000EE;
 }
 
 a:hover {
  text-decoration: underline;
}