body{
	font-family: Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: black;
}

h1{
	font-size: 2.5rem;
	position: relative;
	top: 25;

}

h2{
	font-size: 2rem;
	font-weight: normal;
}

a{
	color: rgb(50, 50, 50);
	text-decoration: none;
}

nav{
	font-size: 1.5rem; /*30px*/
	position: fixed;

	top: 0;
	left: 2rem;
}

nav a{
	color: white;
	background-color: rgb(250,100,75);

	display: inline-block;
	padding: 1rem;
	font-size: .75em; /*60*/
	z-index: 2;
}

nav a:hover, h2 a:hover{
	background-color: rgb(100,100,100);
	text-decoration: underline;
}

ol{
	list-style-type: none;
}

img{
	height: auto;
	max-width: 100%;
}

figure{
	position: relative;
	z-index: 0;
}

figcaption{
	font-size: 0.8rem;
	font-style: italic;
	font-weight: 500;
	position: absolute;
	bottom: 2em;
	left: 0.5em;

	background-color: white;
	/* 
	background-image:url();
	*/
	display: inline-block;
	padding: .8rem;
}

form{
	display: inline-block;
	background-color: rgb(255,255,255);
	padding: 1em;
}

label{
	display:block;
}









