/* 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: #000000;
  background-image: url('../images/testBg.png');
	background-position: center;
	background-size: 100%;
	background-attachment: fixed;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
}

p {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  transition:transform 0.25s ease;
}

.thumbnailL { 
cursor: pointer;
height:300px;
width:300px;
-webkit-transition-property: all; 
-webkit-transition-duration: 0.5s; 
-webkit-transition-timing-function: ease; 
} 
.thumbnailR { 
cursor: pointer; 
height:300px;
width:300px;
-webkit-transition-property: all; 
-webkit-transition-duration: 0.5s; 
-webkit-transition-timing-function: ease; 
} 

/*change the number below to scale to the appropriate size*/ 
.thumbnailL:active { 
transform: scale(1.8) translate(27%);
}
.thumbnailR:active { 
transform: scale(1.8) translate(-27%);
}

.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
#asciiDesktop {display:block}
#asciiMobile {display:none}

@media only screen and (min-width: 600px) {
  .small {
    max-width: 60%;
    height: auto;
  }
  
}

@media all and (max-width:700px) {
   #asciiDesktop {display: none;}
   #asciiMobile {display: block;}
   .main {
     flex-direction: column;
   }
   main{
     padding: 5em 0 5em 0;
   }
}

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

a:hover { 
  background-color: #c9f1fe;
}

h1, h2, h3, h4, h5 {
  color: #3c445f;
  font-family: "Palatino Linotype", Palatino, Baskerville, "Baskerville Old Face", sans-serif;
}

/*#CONTAINER is the rectangle that contains everything but the background!*/

#container {
  margin: auto;
  width: 90%;
	max-width: 70vw;
	height: 85vh;
	background-color: transparent;
	

  
}

#hleader {
  background-color: transparent;
  background-image: url('../images/nessieBanner.png');
	background-position: bottom;
	background-size: 78%;
	background-repeat: no-repeat;
	height: 6em;


   
}

.leftBar{
  background-color: transparent;
  padding: 0.5em 0 0.5em 0;
  flex: 1 1 25px;
  color: #555; 
outline-color: #6666cc;
  outline-style: inset;
  outline-width: 4px;
  outline-offset: 0;
  text-align: end;
  
}

.leftBar ul {
  list-style-type: none;
  padding: 0.5em 0;
  margin: 0;


}
.leftBar li {
  font-size: 1.2em;
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 0.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
 


}
.leftBar li a {
  color: white;
  font-family: "Palatino Linotype", Palatino, Baskerville, "Baskerville Old Face", serif;
  text-decoration: none;
  
  background-color: inherit;
}
.leftBar li a:hover {
  text-decoration: underline;
}


.content {
  background: white;
  padding: 0.5em 0.3em 0.5em 0.3em;
  flex: 5 5 150px;
  overflow-x: auto;
  color: #555; 
outline-color: #6666cc;
  outline-style: inset;
  outline-width: 4px;
  outline-offset: 0;

}

.main {
  display: flex;
  height: 73vh;
  flex: 1;

}

.rightBar{
  background-color: #4f4fb3;
   padding: 0.5em 0 0.5em 0;
  flex: 1 1 25px;
  color: #555; 
outline-color: #6666cc;
  outline-style: inset;
  outline-width: 4px;
  outline-offset: 0;
  background-image: url('../images/nessiePattern.png');
	background-position: top;
	background-repeat: repeat;
	background-attachment: fixed;
}

/*FOOTER STYLE*/
#footer {
  background-color: white;
  padding: 0.5em 0 0.5em 0;
  font-size: 0.8em;
  color: #555; 
outline-color: #6666cc;
  outline-style: inset;
  outline-width: 4px;
  outline-offset: 0;
}



/*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;
}

