/* 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 {
  margin:0;
  background:url() #000;
  font-size: 18px;
  font-family: Georgia, "Times New Roman", serif;
}

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:link { color: #777;}
A:visited { color: #777;}
A:active { color: #777;} 
A:hover { color: #000;}

h1, h2, h3, h4, h5 {
  font-family: Tahoma, Geneva, sans-serif;
  color: #34436f;
}

H1 {
font-size:15pt;
position: relative;
text-align: right;
margin: 0px 0px 0px 0px;
font-family: courier;
line-height: 10px;
color: #777;
background-color: #ccc;
padding: 10px;
z-index:1;
text-shadow: 1px 1px 2px #777;
}

H2 {
font-size:14pt;
font-family: courier;
margin:0px 0px 0px 0px;
line-height: 20px;
color: #777;
padding: 5px 0px 0px 10px;
z-index:2;
position: relative;
background:url("/cam-domino-quote.png") no-repeat left bottom #fff;
text-shadow: 1px 1px 2px #ccc;
}


/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
z-index:0;
margin: 0px 0px 0px 150px;
padding: 60px 0px 0px 0px;
position: absolute;
width: 50%;
height: auto;
}

#content {
z-index:0;
font-size:12pt;
color: #777;
background-color: #eee;
}

#title
{
width: 50%;
left: 0px;
position: absolute;
text-align: right;
margin: 0px 0px 0px 150px;
font-size:30pt;
padding: 0px 50px 0px 50px;
font-family: impact;
background-color: #ccc;
color: #000;
z-index:2;
text-shadow: 1px 1px 2px #777;
border-radius: 0px 25px 25px 0px;
}

/*HEADER STYLE*/
#header {
position: fixed;
left: 0px;
height: 100%;
width: 150px;
z-index:1;
background: no-repeat bottom url(https://kidlightnings.neocities.org/sidebar-bg.png) #fff;
border-right: #ccc solid 1px;
}
#header ul {
font-size:20pt;
padding: 20px 0px 0px 0px;
font-family: courier;
color: #000;
z-index:2;
text-shadow: 1px 1px 2px #777;
writing-mode: vertical-rl;
}
#header li {
  display: inline-block;
}


/*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 {
z-index:0;
height: auto;
font-size:12pt;
color: #777;
background-color: #eee;
}