/* RESET ================================================================================= */

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;
}

/* END RESET ========================================================================== */

* {
  margin: 0;
}
html, body {
  height: 100%;
}
.page-wrap {
  min-height: 100%;
  /* equal to footer height */
  margin-bottom: -142px; 
}
.page-wrap:after {
  content: "";
  display: block;
}
.site-footer, .page-wrap:after {
  /* .push must be the same height as footer */
  height: 150px; 
}
.site-footer {
  background: #fff;
}



body {
	background: #fff;
	-webkit-user-select: none;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 1em;
	text-align: center;
}

#logo {
	width: 226px;
	margin: 75px auto;
}

h1 {
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 3.8em;
	text-transform: uppercase;
	color: #1B3664;
}


p {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 1em;
	color: #1F3565;
	max-width: 500px;
	padding: 0 35px;
	margin: 35px auto 75px;
}

#button {
	font-family: 'Lato', sans-serif;
	font-weight: 100;
	font-size: 1.5em;
	color: #fff;
	text-transform: uppercase;
	margin: 25px auto;
	background: #1B3664;
	text-decoration: none;
	padding: 10px 43px 15px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	box-shadow: inset 0px -5px 0px rgba(0,0,0,0.4);
	transition: 0.1s all linear;
}

#button:hover {
	background: #4785B5;
	box-shadow: inset 0px -5px 0px rgba(0,0,0,0.1);
}

p.footer {
	color: #A6A8AB;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 1em;
	margin: 35px auto 75px;
}