*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	font-size: 12px;
	line-height: 1.6;
	color: #1a1a1a;
	background-color: #fdfdfd;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	margin: 0 auto;
	max-width: 45em;
	/* padding-left: 20%;
	padding-right: 20%; */
	/* padding-top: 50px;
	padding-bottom: 50px; */
	hyphens: auto;
	overflow-wrap: break-word;
	text-rendering: optimizeLegibility;
	font-kerning: normal;
}
@media (max-width: 600px) {
	body {
		font-size: 0.9em;
		padding: 12px;
	}
	h1 {
		font-size: 1.8em;
	}
}

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

.nav-list {
	position: fixed;
	top: 0;
	left: 10px;
	margin-top: 3rem;
	background-color: rgb(255, 255, 255);
	border: 0.5px solid gray;
	border-radius: 5px;
	display: none;
	flex-direction: column;
	max-width: 200px;
	z-index: 1000;
	max-height: 85vh;
	overflow-y: auto;
}
.show-nav {
	display: flex !important;
}
.nav-list > a {
	display: flex;
	justify-items: center;
	background-color: rgb(255, 255, 255);
	border: 0.5px solid gray;
	border-radius: 5px;
	padding: 5px;
	margin: 5px;
	cursor: pointer;
	text-decoration: none;
	color: rgb(0, 0, 0);
}
.nav-icon {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 30px;
	margin: 5px;
}
.nav-icon > .nav-icon-row {
	width: 30px;
	height: 3px;
	margin-bottom: 2px;
	background-color: rgb(0, 0, 0) !important;
}

.content {
	margin-top: 50px;
}
