/* main-blog.css */

.blogpostintro {
  font-size: 1.1em;
  font-style: italic;
}

.publishedby {
  font-size: 0.8em;
  text-align: right;
}

.buttongreen {
  padding: 0.7em;
  cursor: pointer;
  background-color: #258e59;
  background-image: url("images/bg01.png");
  border-radius: 0.4em;
  text-align: center;
  box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
  text-decoration: none;
  -moz-transition: background-color .25s ease-in-out, color .25s ease-in-out;
  -webkit-transition: background-color .25s ease-in-out, color .25s ease-in-out;
  -ms-transition: background-color .25s ease-in-out, color .25s ease-in-out;
  transition: background-color .25s ease-in-out, color .25s ease-in-out;
  text-shadow: -1px -1px 0px rgba(0, 0, 0, 0.5);
}

.buttongreen:hover {
  background-color: #2fb673;
}

.markdown h1 {
  color: #7c035e;	
  font-size: 3em !important ;
	margin-bottom: 0.5em;
}

.markdown h2 {
  font-size: 2.5em !important;
  color: #660033;
}

.markdown h3 {
  font-size: 2em !important;
  color: #99004d;
  font-weight: normal;
}

.markdown h4,h5,h6 {
	font-size: 1.2em !important;
	font-weight: bold;
}

.markdown ul {
	list-style-type: disc !important ;
	padding-left: 2em;
}

.markdown code {
	font: sanserif, Arial, Verdana;
	color: #99004d;
	letter-spacing: 0.1em;
	background: #E6E6E6;
	border-radius: 5px;
	padding: 0 3px 0 5px;
}

.showmobile {
  display: none;
}

.showdesktop {
  display: inline;
}

@media screen and (max-width: 800px) {
  body {
    font-size: 1.2em;
  }
  
  .markdown p {
      line-height: 1.5em;
  }
  
  .markdown h1 {
  font-size: 1.7em !important;
  padding-bottom: 0.5em;
  }
  
  .markdown h2 {
  font-size: 1.3em !important;
  padding-bottom: 0.5em;
  }

  .markdown h3 {
  font-size: 1.3em !important;
  padding-bottom: 0.5em;
  }
  
  .markdown h4,h5,h6 {
  font-size: 1.1em !important;
  padding-bottom: 0.5em;
  }
  
  .showmobile {
  display: inline;
  }

  .showdesktop {
  display: none;
  }


}