/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
   <3 thanks, Eric :-)
*/

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 {
	background: #fff;
	font-family: Fira Sans, Helvetica Neue, Helvetica, Calibri, Arial, sans-serif;
	font-size: 1em;
	font-weight: normal;
	line-height: 1.4;
	color: #666;	
}
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;
}

* {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}



/* link styling */
a:link, a:visited {
	display: inline-block;
	padding: 1px;
	color: #60a7e6;
}
a:hover, a:active, a:focus {
	color: #000;
}

/* ---------------------------------------------------
HOMEPAGE / INDEX 
--------------------------------------------------- */
.homep header, .homep main, .homep footer {
	width: 80%;
	max-width: 60vw;
	margin: 0 auto;
}
.homep header {
	margin: 2em auto;
	font-size: 1.6em;
}
.homep header cite {
	font-size: .72em;
}
.homep main h2 {
	font-size: 1.26em;
	font-weight: 500;
	margin: 0 0 .6em 0;
}
.homep footer {
	padding: 2em 0;
}


