/* Reset */

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.clear {
	clear: both;
}

.hidden {
	display: none;
}

html {
	height: 100%;
	word-wrap: break-word;
	line-break: after-white-space;
	font-kerning: normal;
	text-rendering: optimizeLegibility;
	line-height: 1.5;
	-webkit-nbsp-mode: space;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background-color: hsl(0, 0%, 29%);
}

.wrap {
	flex: 1;
}

/* Typography */


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&family=Merriweather:0,100..900|Work+Sans:0,100..900|Montserrat:ital,wght@0,100..900;1,100..900|Reddit+Mono:wght@200..900');


code,
pre {
	margin: 0;
	padding: 0;

	font-family: "Reddit Mono", monospace;
  	font-optical-sizing: auto;
	font-size: 10pt;

	color: #0f4f02;
}

pre {
	border-top: solid #CCC 1px;
	border-bottom: solid #CCC 1px;
}


body {
	font-family: "Reddit Mono", monospace;
	font-optical-sizing: auto;
  	font-style: normal;
	font-weight: 500;
	font-size: 10pt;
	line-height: 150%;
}

h1 { font-size: 16pt; }
h2 { font-size: 15pt; }
h3 { font-size: 14pt; }
h4 { font-size: 13pt; }
h5 { font-size: 12pt; }
h6 { font-size: 11pt; }

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 900;
	color: #000;
}


p {
	margin-bottom: 16px;
	outline: 0;
}

blockquote {
	border-left: solid #333 5px;
	padding-left: 5px;
	margin-bottom: 16px;
}

b {
	font-variant: small-caps;
}

ul {
	margin: 5px;
	margin-bottom: 10px;
}

/* Color */

a {
	color: #4596ff;
	text-decoration: underline;
}

a:hover {
	color: #ff456a;
}

.footnote {
	font-size: 8pt;
}

/* Layout */

ul {
	list-style-position: inside;
	list-style-type: square;
}

.wrap {
	max-width: 90%;
	min-width: 150px;
	margin: auto;
}

header {
	width: 100%;
	margin-bottom: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
	display: block;
	background-color: white;
}

header a {
	text-decoration: none;
	font-weight: normal;
}

.author {
	margin: auto;
	margin-left: 10%;
	text-align: left;
}

.author h1 {
	float: left;
	text-align: left;
	margin-top: 15px;
	font-size: 20pt;
}

.author h1 a {
	display: block;
	padding-top: 15px;
}

.author img.photo {
	float: left;
	margin: 5px;
	margin-right: 3%;
	border-radius: 150px;
	-webkit-border-radius: 150px;
	-moz-border-radius: 150px;
}

.author .links {
	float: right;
	margin-top: 25px;
	margin-right: 30px;
}

.author .links li {
	list-style: none;
	float: right;
}

.author .links li a {
	display: block;
	padding: 3px;
	margin: 5pt;
	width: auto;
}


footer {
	display: block;
	width: 100%;

	padding: 5px;
	padding-top: 10px;
	padding-bottom: 10px;

	margin: auto;
	margin-top: 20px;
	margin-bottom: 0px;

	clear: both;
	text-align: center;
	color: #050505;
	background-color: #EEE;	
}

article {
	flex: 1 0 auto;
	font-size: 110%;
	margin-top: 30px;
	margin-bottom: 30px;
	min-width: 560px;
	clear: both;
	padding: 15px;
	background-color: white;
}

article.hentry img:not(.icon) {
	max-width: 100%;
	width: auto;
	margin: 0 0 1rem;
	display: block;
	/*margin-left: auto;
	margin-right: auto;*/
	height: auto;
}


.blog_posts li {
	list-style: none;
}

.blog_posts .date {
	color: #BBB;
	display: inline;
	width: 100px;
	text-align: left;
}

.entry-title a {
	text-decoration: none;
	line-height: 30px;
}


.text {
	margin-top: 10px;
	float: left;
	text-align: justify;
}

.text img {
	max-width: 640px;
}


.metadata {
	clear: both;
	float: left;
	display: block;
	border-left: dashed 1px #CCC;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px;
	color: #999;
}


.subpages li {
	list-style: square;
	list-style-position: inside;
	margin-top: 3px;
	margin-bottom: 3px;
}

.pagination {
	width: 100%;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-top: 10px;
}

.pagination .previous {
	float: left;
}

.pagination .next {
	float: right;
}

.pagination a {
	display: block inline;
	padding: 3px;
	border: solid #4596ff 1px;
}