:root {
	--black: #000;
	--white: #fff;
	--darkgrey: #575656;
	--grey: #c7c7c6;
	--lightgrey: #f4f4f4;
	--blue: #000d6e;
	--lightblue: #e5e6f1;
	--green: #1b5951;
	--lightgreen: #94e3d4;
	--lightgreen2: #e0f7f2;
	--purple: #6c2273;
	--lightpurple: #b8b2ff;
	--red: #d9304c;
	--lightred: #ffaca6;
	--orange: #fa9319;
	--lightorange: #fedfc0;
	--yellow: #fae052;
	--lightyellow: #fdf6ce;
	--turquoise: #00a19a;
	--lighttturquoise: #66bcac;
	--text: var(--blue);
	--link: var(--orange);
	--border: #e0e0e0;
	--button-bg: var(--orange);
	--button-txt: var(--white);
	--button-hover-bg: var(--green);
	--button-hover-txt: var(--white);
}
body {
	margin: 0;
	padding: 0;
	background-color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--blue);
}
h1 {
	margin: 2rem 0 2rem;
	text-align: center;
}

#footer {
	display: none;
	position: fixed;
	bottom: 5px;
	right: 10px;
	font-size: 0.7em;
	color: #04acb9;
}
#footer a {
	color: #ffec00;
}