/*
	EGGSHELL: #f4f1de
	Burnt Peach: #e07a5f
	Twilight Indigo: #3d405b
	Muted Teal: #81b29a
	Apricot Cream: #f2cc8f
*/

* {
	margin: 0;
	padding: 0;
}

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

body {
	width: 100%;
	max-width: 100%;
	min-height: 100%;
	padding: 1vh 0;
	background-color: #f4f1de;
	color: #3d405b;
	font-family: Newsreader, serif;
	font-size: 2.4vh;
	line-height: 3.6vh;
}

nav {
	position: fixed;
	left: 0;
	top: 5vh;
	padding: 0.5vh 1vw;
	border-radius: 0 10px 10px 0;
	background-color: #e07a5f;
	color: #3d405b;
	font-family: Carrois Gothic, sans-serif;
	font-weight: bold;
}

nav a, nav a:visited {
	color: #3d405b;
	text-decoration: none;
}

nav tr {
	opacity: 0.7;
	transition: 0.3 all ease-out;
}

nav tr:hover {
	opacity: 1;
	transition: 0.3 all ease-out;
	cursor: pointer;
}

nav tr > td {
	padding: 1vh 0;
	font-size: 120%;
}

nav tr:not(:last-of-type) > td {
	border-bottom: 1px solid #f2cc8f;
}

article {
	margin: 1.5vh 15vw;
}

section {
	margin: 1vh 0;
}

h1, h2, h3, figure > figcaption {
	font-family: Carrois Gothic, sans-serif;
}

h1 {
	font-size: 200%;
	line-height: 200%;
}

h2 {
	font-size: 150%;
	line-height: 150%;
}

h3 {
	font-size: 120%;
	font-size: 120%;
}

h1, h2 {
	text-align: center;
}

h3 {
	text-align: left;
}

sub {
	font-size: 60%;
}

p, figure > figcaption {
	margin: 1vh 0;
}

article a, article a:visited {
	background-color: initial;
	color: #3d405b;
}

article a:hover {
	background-color: #e07a5f;
	transition: 0.3s all ease-out;
}