/* COLORS:
Maroony purple - #650D1B
dark lavender = #9E768F
accent yellow - #EEF36A
desat ^^ - #F7F8CE
backup green - #678D58
*/
:root {
  --bgAndText: #773344;
  --primaryAccent: #62B6CB;
  --secondaryAccent: #E98A15;
  --accent: #D9B1F0;
  --accentDesat: #ECE5F0;
}

body {
  background-color: #C45470;/*--bg+text just bright for the sake of the bg itself*/
  background-image: url('../images/diagmonds.png');
  /*
  This switches to ghibli girsl which is cute and i do like, i'll just need the source and rebalnce of colors
  background-image: url('../images/ghibli-girls.jpg');
  background-size: 800px;
  */

	background-position: top;
  font-size: 18px;
  font-family: Simonetta;
  margin: 0;
}

p {
  line-height: 1.4em; /*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;
}
.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 {
  color: var(--primaryAccent);
}

a:visited {
  text-decoration: line-through;
  color: var(--bgAndText);
}

a:hover { 
  background-color: var(--accent);
}

h1, h3, h4, h5 {
  font-family: Pacifico;
  color: var(--primaryAccent);
}
h2 {
  font-family: Pacifico;
  color: var(--secondaryAccent);
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 90%;
	max-width: 700px;
	background-color: var(--accentDesat);
  color: var(--bgAndText);
}

#content {
  padding: 10px 5% 20px 5%;
}


/*HEADER STYLE*/
#header {
  background-color: var(--primaryAccent);
  padding: 0 5%;
}
#header ul {
  list-style-type: none;
  padding: 0.5em 0;
  margin: 0;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
  font-family: Astloch;
  font-weight: bolder;
  font-size:xx-large;

}
#header li a {
  color: var(--bgAndText);
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  background-color: var(--accent);
}

/*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%;
}