@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;
	color: #000a16;
	background-color: #FFF5EE;
	font-family: Lora, serif;
	font-size: 2.5vh;
	Line-height: 3.5vh;
}
h1,h2,h3{
	font-family: Poppins, sans-serif;
}
h1 {
	font-size: 4.5vh;
	line-height: 6.5vh;
	margin: 1.5vh 0;
}
h2 {
	font-size: 3.5vh;
	line-height: 5vh;
	margin: 1.4vh 0;
}
h3 {
	font-size: 2.9vh;
	line-height: 4.1vh;
	margin: 1vh 0;
}
article{
	margin: 2vh 0;
	padding: 1vh 5vw;
}
section{
	margin: 1.7vh 0;
}
section >p{
	text-indent: 3%;
}
p {
	margin: 0.7vh 0;
}
nav {
	position:  fixed;
	top: 10px;
	left: 10px;
	font-family: Poppins, sans-serif;
	font-size: 2vh;
	line-height: 3vh;
}
nav > a{
	background-color: #323232;
	color: white;
	padding:  2px 4px;
	text-decoration:  none;
	opacity: 0.6;
	transition: all 1s ease-out;
}

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

nav> a.close > span{
	transform: rotate(45deg);
	transition: all 1s ease-out;
}
nav > a:not(:first-of-type){
	display: none;
	border-left: solid 2px white;
	opacity: 0;
}
nav > a:first-of-type{
	/*width: 2.4vw;*/
	padding: 2px 10px;
}
nav > a:hover{
	opacity: 0.95 !important;
	transition: all 1s ease-out;
}
nav > a:visited{
	color: white;
}
a, a:visited {
	color: #323232;
	text-decoration: underline;
}