/* highlighters
#a6611a
#dfc27d
#f5f5f5
#80cdc1
#018571 */

@import url('https://fonts.googleapis.com/css2?family=Lora&family=Poppins&family=Source+Sans+Pro&display=swap');

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

html {
	height: 100%;
	width: 100%;
}

body {
	overflow-x: hidden;
	overflow-y: auto;
	background-color: white;
	color: #000a16;
	font-family: Lora, serif;
	font-size: 1.2vh;
	line-height: 1.8vh;
}

h1, h2, h3 {
	font-family: Poppins, sans-serif;
}

h1 {
	font-size: 2.4vh;
	line-height: 3.6vh;
	margin: 1vh 0;
}

h2 {
	font-size: 2vh;
	line-height: 3vh;
	margin: 0.8vh 0;
}

h3 {
	font-size: 1.5vh;
	line-height: 1.8vh;
	margin: 0.5vh 0;
}

article {
	margin: 1.5vh 0;
	padding: 1vh 5vw;
}

section {
	margin: 1.2vh 0;
}

section > p {
	text-indent: 5%;
}

figure, p.quote {
	margin: 1vh 0;
}

p {
	margin: 0.2vh 0;
}

p.cc {
	text-indent: unset;
}

p.insNote {
	font-family: Source Sans Pro, sans-serif;
	text-indent: unset;
}

p.quote {
	text-indent: unset;
	padding: 0 5vw;
}

nav {
	position: fixed;
	z-index: 3;
	top: 10px;
	left: 10px;
	display: flex;
	flex-direction: column;
	text-align: center;
	font-family: Poppins, sans-serif;
	font-size: 2vh;
	line-height: 3vh;
}

nav > a {
	background-color: #323232;
	color: white;
	width: 100%;
	padding: 2px 4px;
	text-decoration: none;
	opacity: 0.6;
	transition: all 0.3s ease-out;
}

nav > a:visited {
	color: white;
}

nav > a:first-of-type {
	width: 4.8vh;
}

nav > a:not(:first-of-type) {
	display: none;
	border-right: 0;
	border-top: solid 2px white;
	opacity: 0;
}

nav > a:hover {
	opacity: 0.95 !important;
	cursor: pointer;
	transition: all 0.5s ease-out;
}

nav > a > span {
	display: inline-block;
	transform: rotate(0deg);
	transition: all 0.2s linear;
}

nav > a.rotate > span {
	transform: rotate(45deg);
	transition: all 0.2s linear;
}

a, a:visited {
	color: #323232;
	text-decoration: underline;
}

q {
	background-color: #f5f5f5;
	padding: 0 4px;
	border-radius: 2px;
}

ul {
	margin: 1vh 0;
	list-style-position: inside;
}

@media only screen and (min-width: 1024px) {
	body {
		font-size: 2.4vh;
		line-height: 3.6vh;
	}

	h1 {
		font-size: 4.8vh;
		line-height: 7.2vh;
	}

	h2 {
		font-size: 3.6vh;
		line-height: 5.4vh;
	}

	h3 {
		font-size: 3vh;
		line-height: 4.5vh;
	}

	article {
		margin: 3vh 0;
	}

	section {
		margin: 2vh 0;
	}

	p {

	}

	nav {
		flex-direction: row;
		align-items: stretch;
		font-size: 2vh;
	}

	nav > a {
		width: fit-content;
	}

	nav > a:first-of-type {
		width: 2.4vw;
	}

	nav > a:not(:first-of-type) {
		border-left: solid 2px white;
		border-top: 0;
	}
}