/* CSS Document */
:root {
--white:#FFFFFF;
--black:#202020;
--dark:#505050;
--light:#E3E3E3;
--blue:#1B469E;
--dark-green:#94C11E;
--light-green:#C0E65B;
--off-white:#F5F8FD;
--grey-bg:#E5E5E5;
--light-grey:#DFDFDF;
--dark-grey:#C0C0C0;
}
html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: var(--grey-bg);
}
body, input, textarea, select {
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: var(--black);
}

a {
	text-decoration: none;
	color: inherit;
}
.wrapper {
	width: 100%;
	position: relative;
}