html {
	height: 100%;
}

body {
	font-family: system-ui, sans-serif;
	background: #efefef;
	color: #444;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	font-size: 17px;
}

#innerBody {
	margin: auto;
	padding: 0;
	max-width: 960px;
	min-height: 100%;
}

#header {
	position: sticky;
	top: 0;
	padding: 0;
	width: 100%;
	height: 100px;
	border-top: solid 1px #d9d9d9;
}

#headerContentA {
	position: absolute;
	overflow-y: hidden;
	width: 100%;
	height: 35%;
	top: 0;
	background: #efefef;
}

#headerContentB {
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	filter: blur(8px);
}

.effectContainer {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	transform: scaleY(-1);
	pointer-event: none;
}

.effectContainer > .effectElement {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.effectContainer > .effectElement:nth-child(1) {
	-webkit-backdrop-filter: blur(1px);
	backdrop-filter: blur(1px);
	mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 40%);
}

.effectContainer > .effectElement:nth-child(2) {
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	mask: linear-gradient(rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 50%);
}

.effectContainer > .effectElement:nth-child(3) {
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	mask: linear-gradient(rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 60%);
}

.effectContainer > .effectElement:nth-child(4) {
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	mask: linear-gradient(rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 70%);
}

.effectContainer > .effectElement:nth-child(5) {
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	mask: linear-gradient(rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 90%);
}

.effectContainer > .effectElement:nth-child(6) {
	-webkit-backdrop-filter: blur(32px);
	backdrop-filter: blur(32px);
	mask: linear-gradient(rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 80%);
}

.effectContainer > .effectElement:nth-child(7) {
	z-index: 10;
	-webkit-backdrop-filter: blur(64px);
	backdrop-filter: blur(64px);
	mask: linear-gradient(rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 100%)
}

.effectContainer > .effectElementEdge {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(transparent, #efefef);
}

.content {
	margin: 0px;
	padding: 20px 60px 0px;
	flex: 1;
}
@media (width < 800px) {
	.content {
		padding: 20px 20px;
	}
}

.invisible {
	display: none;
}

.pageSpacer {
	margin: 0;
	padding: 0;
	height: 30px;
}

.content h1 {
	margin: 0px;
	font-size: 37px;
	padding: 8px 0px;
	ruby-position: over;
}

.content h2 {
	margin: 0px;
	font-size: 27px;
	padding: 30px 0px;
}

.content h3 {
	display: block;
	margin: 2px;
	font-size: 21px;
}

.content p {
	margin: 0px;
	font-size: 21px;
	font-weight: 300;
	padding: 3px 0px;
}

.content ruby rt {
	font-size: 0.4em;
	font-weight: 500;
}

.invisible_space {
	margin: 0;
	padding: 0;
	width: 0;
}

a {
	text-decoration-style: dotted;
}

a:link {
	color: #f40;
}

a:visited {
	color: #e60;
}

.thumbnail {
	border-radius: 5px;
	border: solid 1px #ccc;
	box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.1);
}

.content .title {
	font-weight: 600;
	line-height: 1.7em;
}

.content .secondarylabel {
	font-size: 17px;
	line-height: 1.3em;
}

.content .bodytext {
	font-size: 17px;
	line-height: 1.5em;
}

.content .mono {
	font-family: ui-monospace, monospace;
}
.content .bold {
	font-weight: 700;
}

.badgelabel_leading {
	font-size: 11px;
	line-height: 11px;
	font-weight: 450;
	padding: 0.3em 0.5em;
	padding-bottom: 0.4em;
	vertical-align: 2px;
	margin-right: 0.8em;
	background: #cacacf;
	border-radius: 5px;
}

.badgelabel_trailing {
	font-size: 11px;
	line-height: 11px;
	font-weight: 450;
	padding: 0.3em 0.5em;
	padding-bottom: 0.4em;
	margin-left: 0.8em;
	background: #cacacf;
	border-radius: 5px;
}

footer {
	padding: 30px 60px;
	padding-top: 80px;
	text-align: bottom;
}
@media (width < 800px) {
	footer {
		padding: 30px 20px;
	}
}

footer ul {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0;
	margin: 0;
	list-style: none;
}

.copyright {
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0;
	color: #bbb;
}
