@import url('https://fonts.googleapis.com/css?family=Montserrat:600');

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

html {
	min-height: 100vh;
	height: 100%;
}

body {
	height: 100%;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	background: #fdfdfd;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #333;
}

a {
	color: #ffd31a;
	transition: color 0.2s ease-out;

	text-decoration: none;
}

a span {
	color: #333;
	transition: inherit;
}

a:hover, a:hover span {
	color: #d31aff;
	/*fill: #ff611a;*/
}

h1 {
	background: #ffd31a;
	padding: 2px 4px;

	color: rgba(0,0,0,0.8);

	font-size: 30px;
	text-transform: lowercase;

	white-space: nowrap;
}

h2 {
	background: #b9ff1a;
	padding: 2px 4px;

	color: rgba(0,0,0,0.8);

	font-size: 20px;
	text-transform: lowercase;

	white-space: nowrap;
}

@media all and (min-width: 450px) {
	h1 {
		font-size: 50px;
	}
	h2 {
		font-size: 30px;
	}
}

h3 {
	font-size: 20px;
	text-transform: lowercase;

	margin: 30px 0 10px 0;

	white-space: nowrap;
}

h3 svg {
	color: #d31aff;
}

body > a {
	margin: 20px 0 40px 0;
}

nav {
	width: 100%;
	margin: 0 auto;
	max-width: 150px;
}
nav ul {
	display: flex;
	font-size: 30px;
	align-items: center;
	justify-content: space-between;
}
nav li {
	display: block;
}
nav svg {
	height: 20px;
}

.graph-outer-wrapper {
	margin: 40px auto 0 auto;
	width: 80%;
	max-width: 1000px;
	overflow: hidden;
}

.graph-wrapper {
	width: 100%;
}

@media all and (max-width: 549px) {
	.graph-wrapper {
		width: 212%;
		position: relative;
		left: -112%;
	}
}

@media all and (min-width: 550px) and (max-width: 767px) {
	.graph-wrapper {
		width: 159%;
		position: relative;
		left: -60%;
	}
}