/*		===		Base styling	===		 */
* {
	font-family: Tahoma, DejaVu Sans, Arial, sans;
	font-size: 13px;
	margin: 0px;
}
html {
	padding: 0px;
	height: 100%;
}
body {
	overflow: visible;
	height: 100%;
	background-color: #1E1D39;
}
hr {
	border: none;
	border-top: dotted 2px #000;
	margin: 12px 64px;
}
/* Remove top margins from paragraphs */
p {
}
a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-decoration-style: dotted;
	text-underline-position: under;
	color: #2789CD;
}
a:hover {
	color: #BE772B;
}


#header {
	background-color: #000;
	position: sticky;
	top: 0;
	overflow: hidden;
}
#header a {
	color: #fff;
	display: inline-block;
	padding: 12px;
}
#header a:hover {
	color: #F8C53A;
}


#post {
	background-color: #F1EBDB;
	margin: auto;
	margin-top: 32px;
	margin-bottom: 32px;
	display: block;
	width: 75%;
	max-width: 512px;
	padding: 16px;
}
/* Post heading */
#post h1 {
	font-size: 20px;
	font-style: italic;
	
}
/* Date text */
#post h2 {
	color: #886E6A;
	margin: 16px 0px;
}
#post p {
	margin: 8px 16px;
}
#post img {
	max-width:100%;
	max-height:100%;
}

/* Image with frame */
.frame {
	margin: auto;
	border: 1px solid #886E6A;
	padding: 8px;
	width: fit-content;
	margin-bottom: 16px;
}
.frame h3 {
	color: #886E6A;
	display: block;
	padding-top: 4px;
}