:root {
	--theme_pink: #f9939e;
	--bg_normal: #f9f9ff;
	--bg_alt: #e9e9ee;
	--fg_dull: #3c3d52;
	--fg_normal: #1c1d32;
	--fg_bold: #0c0d22;
	font-size: 13pt;
	color: var(--fg_normal);
	line-height: 1.5;
	font-family: serif;
	background-color: var(--bg_normal);
}

strong {
	color: var(--fg_bold);
}

#middle-container {
	max-width: 600px;
	margin-inline: auto;
}

#page-header {
	margin-top: 20vh;
	padding: 5px;
	display: flex;
}

#page-header h1 {
	margin-bottom: 0;
	line-height: 1;
	margin: 0 auto 0 0;
}

#page-header h1 a:link, #page-header h1 a:visited {
	color: var(--theme_pink);
	text-decoration: none;
}

#nav-list {
	list-style-type: none;
	list-style-position: inside;
	margin-right: auto;
	padding: 0;
	margin: 0.2rem 0 0 auto;
	gap: 1rem;
	display: flex;
}

.nav-item a:link, .nav-item a:visited {
	color: var(--fg_normal);
	text-decoration: none;
}

.nav-item a:hover, .nav-item.current-page a:hover {
	text-stroke: 0.5px;
	-webkit-text-stroke: 0.5px;
}

.current-page a:link, .current-page a:visited {
	border-bottom: 2px dotted var(--fg_normal);
	margin-bottom: -2px;
}

#page-content {
	width: 85%;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
}

#page-content h2 {
	margin-bottom: 2px;
}

#page-content p {
	margin-top: 2px;
	margin-bottom: 30px;
}

img.centered {
	width: 50%;
	margin-inline: auto;
	border-radius: 5px;
}

@media (prefers-color-scheme: dark) {
	:root {
		--theme_pink: #ffc0d0;
		--bg_normal: #202026;
		--bg_alt: #303036;
		--fg_dull: #cdcdcd;
		--fg_normal: #ededed;
		--fg_bold: #ffffff;
	}
}
