body {
	font-family: "Inter", sans-serif;
	font-weight: 200;
	font-style: normal;
	margin: 0;
	padding: 0;
	background-color: #F8F9FA;
	color: #1A1A1A;
}

a {
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
color: inherit;
}

a:hover {
text-decoration-color: #999;
}

.page {
	width: 500px;
	margin: 0 auto;
}
.header {
	border-bottom: 2px solid black;
}
.header h1 {
	margin: 8px 0;
	font-weight: 300;
}
.main-container {
	display: flex;
	margin-top: 8px;
	font-family: "Lora", serif;
}
.sidebar {
	padding-right: 8px;
	margin-right: 8px;
}
.sidebar a.active {
	font-weight: 300;
	opacity: 1.0;
	text-decoration: none;
}
.sidebar a:hover {
	text-decoration: underline;
}
.sidebar li {
	list-style-type: none;
}

.sidebar a {
	display: block;
	margin-bottom: 8px;
	opacity: 0.6;
	text-decoration: none;
}
.content p {
	margin: 0 0 8px 0;
	margin-bottom: 0;
}
.content {
	width: 50ch;
}

/* responsive css */
@media (prefers-color-scheme: dark) {
	body {
		background-color: #1A1A1A;
		color: #E1E1E1;
	}
	.header {
		border-bottom: 2px solid white;
	}
}
@media (max-width: 768px) {
	.main-container {
		flex-direction: column;
	}
	h1 {
		font-size: 1.8rem;
	}
	.sidebar {
		display: flex;
		justify-content: space-between;
	}
	.page {
		width: 100%;
		padding: 0 1rem;
		box-sizing: border-box;
	}
	.content {
		width: 100%;
	}
}

.footer {
	padding: 16px;
	text-align: center;
}
