/* Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Chango&family=Libertinus+Serif+Display&family=Libertinus+Serif&display=swap');

@import "compass/css3";

* {
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box; 
}

::-moz-selection {
  background: #C6FF91;
  text-shadow: none;
}

::selection {
  background: #C6FF91;
  text-shadow: none;
}

body {
  background-color: rgba(0,0,0,0.1);
  
}


main img {
	max-width:90%;
	
}

/* sticky note CSS https://codepen.io/edbond88/pen/DOMYgy */

.notewrapper {
	margin: 60px auto 0 auto; 
}

/* Note styles */
.note-wrap {
	width: 175px;
	min-height: 175px;
	padding: 35px; 
	margin: 0 11px 22px 11px;
	position: relative;
	font-size: 14px;
	vertical-align: top;
  display: inline-block;
	font-family: Englebert, Arial;
	color:#4b453c;
	background: #F7E999;
	line-height: 20px; 
	text-align: center;
	box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
	&:before  {
		display: block;
		content: ""; 
		background: rgba(227, 200, 114, 0.40);
		width: 130px;
		height: 28px;
	  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	  border-radius: 6px/18px 0;
		position: absolute;
		top: -13px;
		left: 50px;
		-webkit-transform: rotate(-2deg);
		-moz-transform: rotate(-2deg);
		-o-transform: rotate(-2deg);
		-ms-transform: rotate(-2deg);
		transform: rotate(-2deg);
	}

	}
}

.note-yellow {
	background: #F7E999;
	-webkit-transform: rotate(2deg);
	-moz-transform: rotate(2deg);
	-o-transform: rotate(2deg);
	-ms-transform: rotate(2deg);
	transform: rotate(2deg);
}
.note-blue {
	background: #b9dcf4;
	-webkit-transform: rotate(-2deg);
	-moz-transform: rotate(-2deg);
	-o-transform: rotate(-2deg);
	-ms-transform: rotate(-2deg);
	transform: rotate(-2deg);
}
.note-pink {
	background: #FFBDA3;
	-webkit-transform: rotate(1deg);
	-moz-transform: rotate(1deg);
	-o-transform: rotate(1deg);
	-ms-transform: rotate(1deg);
	transform: rotate(1deg);
}
.note-green {
	background: #CAF4B9;
	-webkit-transform: rotate(-1deg);
	-moz-transform: rotate(-1deg);
	-o-transform: rotate(-1deg);
	-ms-transform: rotate(-1deg);
	transform: rotate(-1deg);
}


/* grid layout CSS */

.sidebar {
    grid-area: sidebar;
  }

  .content {
    grid-area: content;
	
  }

  .header {
    grid-area: header;
  }


  .wrapper {
	   background-image: url("../images/tabletop.jpg");
	  background-repeat: no-repeat;
	  background-attachment: fixed;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 120px;  100%;  120px;
    grid-template-areas:
               "....... header  header"
               "sidebar content content";
    background-color: #fff;
    color: #444;
  }
.box {
  padding: 20px;
}

/*
.header {
  background-color: #999;
}
*/


/* notebook paper CSS for entry */

/* styling paper */
#paper {
  width: 80%;
  position: relative;
  margin: 0px auto;
  padding-top: 40px;
  padding-bottom: 10px;
  background-color: white;
  box-shadow: 0px 0px 5px 0px #888;
}

/* styling red vertical line */
#paper::before {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 40px;
  background-color: rgba(255,0,0,0.6);
}

/* styling paper horizontal lines */
#pattern {
  height: 100%;
  background-image: repeating-linear-gradient(white 0px, white 24px, #c0c0c0 25px);
}

/* styling text content */

h1, h2, h3, h4, h5, h6 {
	font-family: 'Libertinus Serif', serif;
	line-height: 30px;
}

#content {
  padding-top: 6px;
  padding-left: 56px;
  padding-right: 16px;
  line-height: 26px;
  font-family: 'Libertinus Serif Display', serif;
  font-size: 19px;
  letter-spacing: 1px;
  word-spacing: 3px;
}


/* from Zonelets template originally */

/*
hr {
  border: solid #c7b591;
  border-width: 2px 0 0 0;
}
*/


.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}


.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}

a:hover { 
  background-color: #fff6e6;
}


/*#CONTAINER is the rectangle that contains everything but the background!
#container {
  margin: 3em auto;
  width: 90%;
	max-width: 700px;
	background-color: #f1e3c9;
  color: #151515; 
  outline-color: #a9a9a9;
  outline-style: ridge;
  outline-width: 4px;
  outline-offset: 0;
}

#content {
  padding: 10px 5% 20px 5%;
}
*/


/*HEADER STYLE
#header {
  background-color: #384879;
  padding: 0 5%;
  border-color: #a9a9a9;
  border-style: ridge;
  border-width: 0 0 4px 0;
}
#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: white;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: underline;
}
*/

/*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%;
}


*/



@media only screen and (max-width: 600px) {

#paper {
  width: 100%;
}
  
    .wrapper {
    display: grid;
grid-row:1;
grid-column:1;
grid-template-columns: 100%;  120px;  120px;
grid-template-areas:
               "sidebar"
               "content";
  }
}


