/* 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." */

@import url('https://fonts.googleapis.com/css2?family=Limelight&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Tilt+Neon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Matemasie&display=swap');

body {
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: linear-gradient(0deg, rgb(255 200 122) 0%, rgb(246 220 118) 50%, rgb(250 255 195) 100%);
  font-size: 18px;
  font-family: 'Lexend', monospace;
  margin: 1;
}

p {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
  color:#401377;
  font-family: 'Lexend', monospace;
  font-size: 18px;
  text-align: justify;
  text-justify: inter-word;
}

hr {
  border: solid #f7b22a;
  border-width: 2px 0 0 0;
}

img {
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  border-radius: 20px;
  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: rgb(31, 160, 177);
  font-weight: bold;
  text-decoration-line: none;
}

a:visited {
  color:#1FA0B1
}

a:hover { 
  color: #1FA0B1;
  text-decoration: underline;
}

h1 {
  font-family: 'Matemasie', monospace;
  color: #dd3170;
  text-align: center;
  font-size: 2.5em;
  padding: 5px 5px 5px 5px;
}

h2 {
  font-family: 'Tilt Neon', monospace;
  color: #dd3170;
  font-size: 30px;
  
}

h3 {
  font-family: 'Tilt Neon', monospace;
  color: #ec9225;
  font-size: 20px;
}

h4 {
  font-family: 'Tilt Neon', monospace;
  color: #ec9225;
  font-size: 20px;
}
/*h5 is Recent Posts heading styling*/
h5 {
  font-family: 'Tilt Neon', monospace;
  color: #ec9225;
  font-size: 25px;
  line-height: 1em;
  margin-bottom: 2px;
}
/*h6 is the Post Date styling*/
h6 {
  font-family: 'Tilt Neon', monospace;
  color: #DA5D90;
  font-size: 18px;
  margin-top: 2px;
  margin-bottom: 2px;
}
  
#postTags {
  color: #401377;
}
  
@media screen and (min-width: 601px) {
  div.titlecontainer {
    font-size: 50px;
  }
}

@media screen and (max-width: 300px) {
  div.titlecontainer {
    font-size: 30px;
  }
}
#titlecontainer {
  margin: 3em auto;
  border-radius: 39px;
  width: 90%;
	max-width: 700px;
	background-color: #fdb943;
  outline-color: #f37735;
  outline-style: solid;
  outline-width: 2px;
  
}
/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 3em auto;
  padding: 1px;
  border-radius: 39px;
  width: 90%;
	max-width: 700px;
	background-color: #f7eedf; 
  outline-color: #f4874c;
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 0;
}

#content {
  padding: 5px 5% 5px 5%;
}


/*HEADER STYLE*/
#header {
  background-color: #f69d20;
  border-radius: 39px;
  padding: 0 5%;
  border-color: #f37735;
  border-style: solid;
  border-width: 2px;
}
#header ul {
  list-style-type: none;
  padding: 0.5em 0;
  margin: 1px;
}
#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: #dd3170;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: underline;
}

/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1em;
  padding: 0;
  list-style-type: none;
}
#recentpostlistdiv ul {
  font-size: 18px;
  font-family: 'Tilt Neon', monospace;
  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: 12px;
  padding: 0 5% 1px 5%;
  text-align: center;
}