@charset "UTF-8";
/* CSS Document */

/* open-sans-300 - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url('open-sans-v34-latin-300.eot'); /* IE9 Compat Modes */
	src: local(''),
	   url('open-sans-v34-latin/open-sans-v34-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	   url('open-sans-v34-latin/open-sans-v34-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
	   url('open-sans-v34-latin/open-sans-v34-latin-300.woff') format('woff'), /* Modern Browsers */
	   url('open-sans-v34-latin/open-sans-v34-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
	   url('open-sans-v34-latin/open-sans-v34-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-regular - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('open-sans-v34-latin-regular.eot'); /* IE9 Compat Modes */
	src: local(''),
	   url('open-sans-v34-latin/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	   url('open-sans-v34-latin/open-sans-v34-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
	   url('open-sans-v34-latin/open-sans-v34-latin-regular.woff') format('woff'), /* Modern Browsers */
	   url('open-sans-v34-latin/open-sans-v34-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
	   url('open-sans-v34-latin/open-sans-v34-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
/* open-sans-700 - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('open-sans-v34-latin-700.eot'); /* IE9 Compat Modes */
	src: local(''),
	   url('open-sans-v34-latin/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	   url('open-sans-v34-latin/open-sans-v34-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
	   url('open-sans-v34-latin/open-sans-v34-latin-700.woff') format('woff'), /* Modern Browsers */
	   url('open-sans-v34-latin/open-sans-v34-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
	   url('open-sans-v34-latin/open-sans-v34-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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


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

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

button, button:focus {
	border: 0;
	outline: 0;
}

html {
	scroll-behavior: smooth;
}

/* ========================
   Layout 
=========================== */

html {
	background-color: #0a0a0a;
}

#content-wrapper {
	background: url("../background.png")no-repeat center center fixed; 
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	padding: 5rem 2rem;
	box-sizing: border-box;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#content-wrapper.white {
	background-color: white;
	background-image: none;
}

#logo {
	max-width: 20%;
	min-width: 250px;
	margin-bottom: 6rem;
}

#content {
	max-width: 1000px;
}

#content {
	margin-bottom: 4rem;
}
#cta {
	padding-bottom: 2rem;
}
#footer {
	background-color: #1a1a1a;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}


/* ========================
   Typo 
=========================== */

html {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-size: calc(16px + (21 - 16) * (100vw - 320px) / (3360 - 360));
}

p, h1, h2 {
	margin-bottom: 1em;
	line-height: 1.5em;
}

h2 {
	margin-top: 2em;
}

h1, h2 {
	font-weight: 400;
}

h1 {
	font-size: 1.5rem;
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a, .large {
	color: #b0bcc3;
	text-align: center;
}

.large {
	font-size: 1.25rem;
}

.small {
	font-size: 0.8rem;
}
a.button {
	font-size: 0.8rem;
	padding: 0.6rem 1.2rem;
	background-color: #b0bcc3;
	color: #0a0a0a;
}
a.button:hover {
	background-color: #fafafa;
	color: #0a0a0a;
	text-decoration: none;
}
#footer a {
	margin-right: 1rem;
}
#footer a:last-child {
	margin-right: 0;
}

.black {
	color: #0a0a0a;
}

@media (max-width:500px){
	.small {
		font-size: 0.75rem;
	}
	.large {
		font-size: 1rem;
	}
	#logo {
		margin-bottom: 4rem;
	}
}


