/****************************************/
/* CSS VARIABLES
/****************************************/
:root {
	--background: rgba(0, 214, 170, .85);
	--link-color: #000;
	--link-hover-color: #404142;
}
/****************************************/





/****************************************/
/* HTML ELEMENTS 						*/
/* including Eric Meyer’s CSS Reset 	*/
/****************************************/
html, body, div, span, applet, object, iframe, table, caption, tbody, tfoot, thead, tr, th, td, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,  
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, input, textarea, header, nav, section, article, aside, figcaption, figure, footer /* HTML5 tags too */ {
	outline: 0;
	padding: 0;
	margin: 0;
	border: 0;
	font-family: inherit;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}
html {
	height: 100%;
}
body { 
	position: relative;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden !important;
	font-family: 'Heebo', sans-serif;
	font-size: 17px;
	font-weight: 400;
	background: #ebe8e7;
	color: #000;
}
a {
	text-decoration: none; 
	color: var(--link-color);
	-webkit-transition: color 0.2s ease;
	   -moz-transition: color 0.2s ease;
		-ms-transition: color 0.2s ease;
		 -o-transition: color 0.2s ease;
			transition: color 0.2s ease;
} 
a:hover, 
a:active, 
a:focus {
	color: var(--link-hover-color);
}
h1,
h2,
h3 {
	margin: 1em 0;
	line-height: 0.8333em;
}
h1 {
	font-size: 3em;
}
h2 {
	font-size: 2.5em;
	font-weight: 100;
}
h3 {
	font-size: 1.6666em;
	font-weight: 700;
}
p {
	line-height: 1.3333em;
}
p:not(:last-child) {
	margin-bottom: 1em;
}
ol, ul { 
	list-style: none; 
}
img {
	max-width: 100%;
}
textarea{ 
	resize: none; 
	overflow: hidden; 
}

@media only screen and (min-width : 1600px) {
	body {
		font-size: 19px;
	}
}

/****************************************/


