/* 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;
}

/* ---------------------------------------------------
HEADER STYLING 
--------------------------------------------------- */
header {
max-width: 700px;
margin: 2em auto;
text-align: center;
}

header h1 {
font-size: 3rem;
font-weight: 500;
}

header small {
padding: 0 5%;
border-top: #c3c0c0 1px solid;
}



/* ---------------------------------------------------
CONTENT STYLING 
--------------------------------------------------- */
main {
max-width: 1000px;
margin: 2em auto;
padding: 0 1em;
}


article h2 {
font-size: 1.36em;
line-height: 1.1;
color: #666;
padding: 12px 0 12px 0;
border-top: #c3c0c0 1px solid;
font-weight: 500;
}

article p {
 margin: 5px 0 2em 0;
}

article ol p {
z-index: 1;
position: relative;
}

/* list styling with custom numbers */

/* disable automatic decimal numbers */
ol li {
    list-style: none;
     position: relative;
}

/* initialize counter */
ol {
    counter-reset:li;
    position: relative;
}

/* initialize coutner */
ol > li::before {
    content:counter(li); /* Use the counter as content */
    counter-increment:li;
	font-size: 6em;
	font-weight: 600;
	line-height: 1;
	padding: 0 .5em;
	width: 40px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    color: #cacaca;
}
ol strong {
  font-weight: 600;
  display: block;
}

figure {

}
figcaption {
	text-align: center;
}
article img {
	width: 100%;
}
small {
 color: #aeaeae;
}

/* ---------------------------------------------------
FOOTER STYLING 
--------------------------------------------------- */


footer {
margin: 0 auto;
padding: 1rem 0;
text-align: center;
border-top: #c3c0c0 1px solid;;
}

footer p {

}
