/* 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:#fff7f8 url(https://diary.lollyrots.com/images/hearts.png) fixed;
font-family: Arial, sans-serif;
font-size: 14px;
color:#000;
letter-spacing:0px;
margin: 0;
text-align: justify;
}

p {
  line-height: 30px; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

hr {
  border: dotted #ffc8d7;
  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, a:visited, a:active {
color:#ff6cb6;
font-weight:bold;
text-decoration:none;
}

a:hover {
color: #ff99cc;
font-weight:bold
font-style:uppercase;
letter-spacing:1px;
text-decoration-line: underline; 
text-decoration-style: wavy; 
text-decoration-color: #ffc8d7; 
text-underline-offset: 4px; 
cursor:help;
}

b { 
color: #ff99cc;
font-weight:bold; 
}

i { 
color:  #ffc8d7;
font-style:italic; 
}

u {
color: #ff99cc;
text-decoration-line: underline; 
text-decoration-style: wavy; 
text-decoration-color: #ffc8d7; 
text-underline-offset: 4px; 
}

s {
color: #ffc8d7;
font-weight:bold; 
text-transform: uppercase;
}


h1  {
text-align: center;
font:40px arial;
font-weight:bold;
color: #ff99cc;
letter-spacing:-5px;
text-transform:lowercase;
}

h2 {
text-align: center;
font:25px georgia;
font-weight:bold;
color: #ffc8d7;
letter-spacing:-3px;
text-transform:lowercase;
font-style:italic;
}

h3, h4, h5 {
text-align: center;
font:20px arial;
font-weight:bold;
color: #ff99cc;
letter-spacing:1px;
text-transform:none;
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 90%;
	max-width: 800px;
	background-color: #fff;
  color: #000; 
  outline-color: #ffc8d7;
  outline-style: double;
  outline-width: 5px;
  outline-offset: 0;
    line-height: 30px;
}

#content {
  padding: 10px 5% 20px 5%;
    line-height: 30px;
}


/*HEADER STYLE*/
#header {
background-color: #fff7f8;
font:20px Georgia;
letter-spacing:-2px;
padding: 0 5%;
border-color: #FFC8D7;
outline-color: #ffc8d7;
outline-style: double;
outline-width: 5px;
outline-offset: 0;
text-shadow: 2px 2px 2px #fff;
text-align: center;
}
#header ul {
list-style-type: none;
padding: 0.5em 0;
margin: 0;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
  text-transform:none;

}
#header li a {
  color: #ff6cb6;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
color: #ff99cc;
font-weight:bold
font-style:uppercase;
letter-spacing:1px;
text-decoration-line: underline; 
text-decoration-style: wavy; 
text-decoration-color: #ffc8d7; 
text-underline-offset: 4px; 
cursor:help;
}

/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
    line-height: 30px;
}
#recentpostlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
    line-height: 30px;
}
.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 {
background-color: #fff7f8;
text-align: center;
font:18.5px arial;
font-weight:bold;
color: #ff99cc;
letter-spacing:-2px;
text-transform:none;
  padding: 0 5%;
  border-color: #FFC8D7;
  outline-color: #ffc8d7;
  outline-style: double;
  outline-width: 5px;
  outline-offset: 0;
  text-shadow: 2px 2px 2px #fff;
    padding: 5px 5% 10px 5%;

}