/* reset.css */

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {	margin: 0;	padding: 0;	border: 0;	font-size: 100%;	font: inherit;	vertical-align: baseline;}/* HTML5 display-role reset for older browsers */article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {	display: block;}body {	line-height: 1;}ol, ul {	list-style: none;}blockquote, q {	quotes: none;}blockquote:before, blockquote:after,q:before, q:after {	content: '';	content: none;}table {	border-collapse: collapse;	border-spacing: 0;}

/* style.css */
html{
	font-size: 18px;
}
h1,h2,h3,body,article,p,span, a{
	font-family: 'Libre Baskerville', serif;
	color: #333;
}
a{
	text-decoration: none;	
}
a:hover{
	text-decoration: underline;
}
#hidden-name{
	position: absolute;
	top: 0;
	left: 0;
	font-size: 2em;
	font-variant: small-caps;
	width: 1em;
	text-align: center;
	display: none;
}
.space{
	visibility: hidden;
}
#main h1 {
	font-variant: small-caps;
	font-size: 4em;
	letter-spacing: .2em;
	width:100%;
	margin-top: 2em;
	text-align: center;
}
nav{
	width: 100%;
	margin-top:1em;
	text-align: center;
}
.nav{
	font-size: 1em;
	margin: 0 5px;
	display: inline;
}
.nav:hover{
	text-decoration: underline;
	cursor: pointer;
}
.secondary{
	position: absolute;
	top:0;
	left:0;
	height: 100%;
	max-width:1000px;
	margin-left: 80px;
	overflow: auto;
	display: none;
}
	#portfolio img{
		padding: 5px;
		margin:2px;
	}
	#portfolio img:hover{
		background: #77bed2;
		cursor: pointer;
	}
	#portfolio .nav{
		text-align: right;
		display:block;
	}
	#portfolio-back{
		position: fixed;
		top: 20px;
		right: 0;
		margin-right:40px;
	}
#main-secondary{
	display:none;
}
#main-secondary img{
	margin-bottom:-5px;
}
.close{
	font-size: .7em;
	vertical-align: super;
}
#main-secondary-secondary{
	margin-top: .8em;
	display:none;
}

@media all and (max-width: 699px) {
  #main h1 {
    font-size: 2em;
  }
}


