html {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	background-color: var(--background);
	color: var(--text);
	font-weight: 300;
	scroll-behavior: smooth;
	font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-weight: 400;
	margin: 0;
}

.lh-8 {
	line-height: 1.8;
}

.post > h1,
.post > h2,
.post > h3,
.post > h4,
.post > h5,
.post > h6 {
	margin-top: 2.5rem;
	margin-bottom: 0;
}

a {
	text-decoration: underline;
	color: var(--text);
	text-underline-offset: 0.25em;
	opacity: 1;
	transition: opacity 0.15s ease-in;
}
a:hover {
	opacity: 0.5;
	transition: opacity 0.15s ease-in;
}

a:visited {
	color: var(--text);
}

ul {
	list-style: disc;
}

li {
	margin: 0.5em auto;
	word-wrap: normal;
}

:root {
	--text: #000;
	--background: #fff;
}

/* Header styling */
header {
	font-family: Georgia, 'Times New Roman', Times, serif;
}

nav {
	max-height: min-content;
}
nav a {
	font-family: Georgia, 'Times New Roman', Times, serif;
}
nav a:hover {
	text-decoration: underline;
}
