/*		===		Base styling	===		 */
* {
	font-family: monospace;
	font-size: 14px;
	margin: 0px;
}
html {
	padding: 0px;
}
body {
	overflow: visible;
	height: auto;
	background-color: #F1EBDB;
}
hr {
	border: none;
	border-top: dotted 2px #886E6A;
	margin: 12px 0px;
}
a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-decoration-style: dotted;
	text-underline-position: under;
	color: #2789CD;
}
a:hover {
	color: #BE772B;
}


#post {
	max-width: 512px;
	margin: 16px;
	padding: 8px;
	border: 1px solid #886E6A;
}
/* Post heading */
#post h1 {
	font-size: 20px;
	font-style: italic;
	margin: 0px 0px 16px 0px;
	
}
/* Date text */
#post h2 {
	color: #886E6A;
	margin: 4px;
	scroll-margin-top: 64px; /* For jumping to anchor */
}
#post p {
	margin: 8px 16px;
}
#post img {
	width: 100%;
	max-width: 480px;
}

/* Image with frame */
.frame {
	margin: auto;
	padding: 8px;
	width: fit-content;
	margin-bottom: 16px;
}
.frame h3 {
	color: #886E6A;
	display: block;
	padding-bottom: 4px;
}