html, body {
	width: 100%;
	color: #444;
	padding: 0;
	margin: 0;
	font: 16px/1.6 sans-serif;
	background: #f7f7f7;
}

#container {
	max-width: 650px;
	margin: 0 auto;
	position: relative;
}

nav {
	display: flex;
	justify-content: space-around;
	margin: 40px 0
}

a {
	color: #444;
	border-bottom: 1px solid #008080;
	text-decoration: none
}

a:hover {
	color: #008080;
	border-bottom: 1px solid #008080;
	text-decoration: none
}

h1 {
	font-size: 20px;
	margin: 0
}

h2 {
	font-weight: normal;
	font-size: 18px;
	margin: 0;
}

time {
	font-size: 14px;
	color: #BBB;
	margin: 0
}

h3 {
	font: 18px sans-serif;
	font-weight: bold;
	margin: 0;
	margin-top: 20px;
}

p, ul {
	text-align: justify;
	text-justify: auto;
	margin: 0;
	font: 15px sans-serif;
	line-height: 1.6;
}

figure {
	width: 0;
	display: table;
	margin: 0 auto;
}

figure img {
	max-height: 400px;
	max-width: 600px;
	margin: 0 auto;
	display: block
}

figcaption {
	margin: 0;
	padding: 7px;
	text-align: center;
	text-justify: auto;
	color: #008080;
	font-style: italic;
	max-width: 80%;
	margin: 0 auto;
	font-size: 14px;
}

details {
	vertical-align: super;
	font-size: 10px;
	font-weight: bold;
	color: #000;
	cursor: pointer;
	display: inline;
}

details:hover {
	color: #008080
}

details[open=""]:hover {
	color: #444
}

details summary::-webkit-details-marker {
	display: none
}

details, summary {
	list-style-image: none;
	display: inline;
	color: #008080;
}

details[open=""] {
	display: block;
	border: 0;
	font-size: 15px;
	font-weight: bold;
	background-color: #EEE;
	margin: 0;
	color: #444;
	width: 100%;
}

details[open=""]>summary {
	font-weight: bold;
	color: #444;
}

details[open=""]>p {
	margin: 0;
	padding: 10px;
	width: calc(100% - 20px);
}

.redact {
	filter: blur(6px);
}

.blue {
	color: blue;
}

.red {
	color: red;
}

pre {
	background: #eee;
	margin: 0;
	white-space: pre-wrap;
	word-wrap: break-word;
}

pre code {
	margin: 5px;
	display: block;
}

article :not(pre) > code {
	margin: 0;
	padding: 2px 4px;
	font-size: 90%;
	color: #000;
	background-color: #00808011;
	border-radius: 4px;
	font-family: monospace;
}

blockquote {
	background: #eee;
	border-left: 10px solid #00808033;
	margin: 0;
	padding: 10px;
}

ul, ol {
	margin: 0;
	padding: 0;
	margin-left: 21px;
}

ul {
	margin-left: 16px;
}

li {
	margin-bottom: 5px;
}

li:last-child {
	margin-bottom: 0;
}

article {
	display: flex;
	gap: 20px 0;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

h3, #intro, ul, ol, pre, figure, blockquote, details > p {
	width: 100%;
}

.footnote-container {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(5px);	
	display: none;
	align-items: center;
	cursor: pointer;
	
}

.footnote {
	padding: 15px;
	max-width: 650px;
	margin: 0 auto;
	background-color: #fff;
	cursor: default;
	gap: 20px 0;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 20px;
	flex-direction: column;
}

.footnote-handle {
	color: #008080;
	font-weight: bold;
}

.footnote-tag {
	color: #008080;
	font-weight: bold;
	cursor: pointer;
}

@media only screen and (max-width: 650px) {
	#container {
		margin: 10px;
		width: calc(100% - 20px);
	}

	pre {
		width: calc(100% - 10px) !important;
	}

	figure img {
		max-width: 90vw
	}
}

form .mc-field-group {
	display: inline-block;
}

form .clear {
	display: inline-block;
	margin-left: 10px;
}

form {
	text-align: center;
}

#mce-EMAIL {
	width: 220px
}