/* 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." */

:root {
/* Background Colors: */
  --background-color: #FFEBF0;
  --secondary-background-color: #f3c1c1;

  /* Text Colors: */
  --text-color: #525252;
  --link-color: #c98382;
  --link-color-light: #FFEBF0;
  --link-color-hover: #f3c1c1;

  /*border*/
  --border-color: #c98382;
  --border: 2px solid;

    /* Text: */
  --font: "Patrick Hand", cursive;
  --heading-font: "Patrick Hand", cursive;
  --font-size: 16px;

}


body {
  background-color: var(--background-color);
  background-image: url('../../images/plaid63.png');
	background-position: top;
	background-repeat: repeat;
	background-attachment: fixed;
}

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;
}
.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(--link-color)
}

a:hover { 
  background-color: var(--link-color-hover);
}

h1 {
  color: var(--text-color);
  font-family: var(--heading-font)
}

h2, h3, h4, h5 {
  color: var(--text-color);
  font-family: var(--heading-font)
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 95%;
	max-width: 800px;
  color: var(--text-color);
  outline-color: transparent;
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 0; 
  font-size: 14px;
  font-family: var(--font);
  margin: auto;
  margin-top: 40px;
  background-color: #fff;
  background-image:
  linear-gradient(90deg, transparent 79px, #abced4 79px, #abced4 81px, transparent 81px),
  linear-gradient(#eee .1em, transparent .1em);
  background-size: 100% 1.2em;
  overflow-y: auto;
  height: 600px;


}

#content {
  padding: 10px 5% 20px 13%;
}


/*HEADER STYLE*/
#header {
  position: absolute;
  top: 50px;
  left: 175px;
  background-color: transparent;
  background-image: url('../../images/scrapbook/11.png');
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0 5%;
  border-color: transparent;
  border-style: solid;
  border-width: 0 0 2px 0;
  width: 200px;
  height: 200px;
  transform: rotate(-5deg);
}
#header ul {
  list-style-type: none;
  padding-top: 60px;
  padding-left: 10px;
  margin-right: 0px;
}
#header li {
  font-size: 1.2em;
  /*display: inline-block;*/
  margin-right: 0em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}
#header li a {
  color: var(--link-color);
  font-family: var(--heading-font);
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: underline;
  color: var(--link-color-hover);
}

/*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 13%;
}



.jetbrains-mono-blogfont {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 14px;
  font-style: normal;
}

.vt323-regular {
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
}

 .taped::before {
  background-image:url('https://hillhouse.neocities.org/materials/stickers/images/tape/pattern-hearts.png');
  background-repeat:no-repeat;
  display:block;
  content:" ";
  position:absolute;
  height:68px;
  width:204px;
  background-size:contain;
  top:20px;
  left:40%
}

.taped2::before {
  background-image:url('website/images/scrapbook/tumblr_bbfe982def340c6f821c0207d62747e2_5eda7e51_1280.png');
  background-repeat:no-repeat;
  display:block;
  content:" ";
  position:absolute;
  height:68px;
  width:204px;
  background-size:contain;
  top:20px;
  left:40%
}

.patrick-hand-regular {
  font-family: "Patrick Hand", cursive;
  font-weight: 400;
  font-style: normal;
}

.scrapbook1 {
  position:absolute;
  top: 330px;
  right:125px;
  rotate: 5deg;
  width: 300px;
}

.scrapbook2 {
  position:absolute;
  bottom: 60px;
  right:300px;
  rotate: -5deg;
  width: 200px;
}