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

@font-face {
	font-family: 'Proxima Nova';
	src: url('../fonts/proximanova-light-webfont.woff2') format('woff2'),
			 url('../fonts/proximanova-light-webfont.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Proxima Nova';
	src: url('../fonts/proximanova-semibold-webfont.woff2') format('woff2'),
			 url('../fonts/proximanova-semibold-webfont.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'Proxima Nova';
	src: url('../fonts/proximanova-lightitalic-webfont.woff2') format('woff2'),
			 url('../fonts/proximanova-lightitalic-webfont.woff') format('woff');
	font-weight: 300;
	font-style: italic;
}
@font-face {
	font-family: 'Proxima Nova';
	src: url('../fonts/proximanova-semibolditalic-webfont.woff2') format('woff2'),
			 url('../fonts/proximanova-semibolditalic-webfont.woff') format('woff');
	font-weight: 600;
	font-style: italic;
}

:root {
	--scn-dgray: #39546E;
	--scn-lgray: #DDE6EA;
	--scn-light: #fbfaf3;
  --scn-light-t: #fbfaf37b;
	--scn-dark: #022344;
  --scn-dark-t: #013161aa;
	--scn-coral: #ffcdc5;
	--scn-peach: #FFD1C2;
	--scn-dblue: #004774;
	--scn-lblue: #6592b7;
	--scn-foam: #c0eaf9;
	--scn-lpurple: #F0D6F6;
	--scn-dpurple: #8575B9;
	--scn-dred: #890C2A;
	--radius: 8px;
}

body {
	font-family: 'Proxima Nova', Helvetica, sans-serif;
	font-weight: 600;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  height: 100vh;
  width: 100vw;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
h1 {
  font-size: 2rem;
  font-weight: 300;
  margin-left: 100px;
}

main {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
svg#logo {
  height: 150px;
}

@media only screen and (max-width: 800px) {
	h1 {
    font-size: 2rem;
    font-weight: 300;
    margin-left: 0;
    margin-top: 50px;
  }
  main {
    flex-direction: column;
    justify-content: center;
  }
}