/* Fonts and Root */
@import url('https://saucyfiles.neocities.org/fonts/stylesheet.css');

:root{
    --linen: #ffeddf;
    --rose: #febbc7;
    --rasin: #884b59;
    --tea: #d0e3b4;
    --grape: #dea3c1;
    --peach: #ffd1bc;
    --salmon: #ff91a9;
    --sunlight: #fffcdd;
    --nearwhite: #FFFAF8;
    --spacing: 5px;
    --border: 2px solid var(--rose);
    --dashed: 2px dashed var(--rose);
    --shadow: 1px 1px #884b59;
    --text: var(--salmon);
    --bolder: robaga_rounded_blackregular;
    --bold: robaga_roundedbold;
    --regular: robaga_roundedregular;
    --thin: robaga_rounded_thinregular;
  /*  --bolder: fabrikat_monoblack;
    --bold: fabrikat_monobold;
    --regular: fabrikat_monoregular;
    --thin: fabrikat_monolight;
    --italic: fabrikat_monoitalic; */
}

body {
  background-color: #f9cde6;
  background-image: url('https://saucyfiles.neocities.org/img/gifs/pastelsunrise.gif');
	background-size: cover;
  background-attachment: fixed;
  cursor: url('https://saucyfiles.neocities.org/cursors/trans/Trans-normal.cur'), default;
  font-size: 18px;
  font-family: var(--regular), "Times New Roman", serif;
  margin: 0;
}

p {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

hr {
  border: var(--border);
}

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{
  cursor: url('https://saucyfiles.neocities.org/cursors/trans/Trans-link.cur'), pointer;
  color: var(--tea);
  text-shadow: 1px 1px #d9b6b6;
}

a:hover{
  color: var(--peach);
}

h1, h2, h3, h4, h5 {
  font-family: var(--bold), Geneva, sans-serif;
  color: var(--grape);
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 90%;
	max-width: 700px;
	background-image: url('https://saucyfiles.neocities.org/img/bgs/creamcanvas.gif');
  color: var(--grape); 
  outline-color: var(--rose);
  outline-style: ridge;
  outline-width: 4px;
  outline-offset: 0;
}

#content {
  padding: 10px 5% 20px 5%;
}


/*HEADER STYLE*/
#header {
  background-image: url('https://saucyfiles.neocities.org/img/bgs/pinkcottoncandy.jpg');
  background-repeat: repeat;
  background-size: 300px;
  padding: 0 5%;
  border-color: var(--rose);
  border-style: ridge;
  border-width: 0 0 4px 0;
  position: relative;
}
#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;
}
#header li a {
  color: var(--linen);
  text-decoration: none;
  background-color: inherit;
  font-family: var(--bolder);
  text-shadow: var(--shadow);
}
#header li a:hover {
  text-decoration: underline;
}

/* Close Button */
#closebutton{
  height: 30px;
  margin: 0;
  padding: 0;
  position: absolute;
  top:5px;
  right: 5px;
}

#closebutton:hover{
  filter:saturate(65%);
}

/*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%;
}