:root {
	--main-color-black: #252525;
	--main-color-green-1: #76aa47;
	--main-color-green-2: #46673c;
	--main-color-green-3: #d7e5c9;
	--main-color-blue-1: #7cbad5;
	--main-color-blue-2: #c6e2f1;
	--main-color-blue-3: #dbe2f266;
	--main-color-grey-1: #8C8C8C;
	--main-color-white: white;

	--height-header: 90px;
	--height-footer: 50px;

	--bg-html: var(--main-color-white);
	--bg-header: #596783;
	--bg-footer: #3A3A3A;
}
html {
	position: relative;
	margin: 0;
	height: 100%;
	font-size: 18px;
	font-family: 'sans-serif;';
	min-height:100%;
}
body{
	min-height: 100%;
	margin: 0;
	width: 100%;
	height: 100%;
}
header {
	height: var(--height-header);
	width: 100%;
	font-size: 18px;
}
#container {
	width: 100%;
	margin: 0;
	min-height: calc(100% - var(--height-header));
	display: flex;
	flex-direction: column;
	align-content: stretch;
}
.main-btn-green {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid var(--main-color-green-1);
	border-top-left-radius: 1em 50%;
    border-top-right-radius: 1em 50%;
    border-bottom-right-radius: 1em 50%;
    border-bottom-left-radius: 1em 50%;
	color: var(--main-color-white);
	font-family: 'arial';
	text-decoration: none;
	background-color: var(--main-color-green-1);
	transition: 0.4s;
	filter: drop-shadow(1px 1px 2px #222222);
}
.main-btn-green:hover {
	background-color: var(--main-color-white);
	color: var(--main-color-green-1);
	transition: 0.3s;
}
.main-h1-green {
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 40px;
	font-size: 26px; 
	text-align: center;
	color: var(--main-color-green-2);
}
.main-h2-green {
	font-size: 26px; 
	text-align: center;
	color: var(--main-color-green-2);
}
.web-link {
	min-height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--main-color-blue-3);
}
.web-link ul {
	padding: 0px;
	margin: 5px 15px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.web-link li { 
	margin: 5px 0px;
	list-style-type: none;
}
.web-link li a {
	font-size: 18px;
	text-decoration: none;
	color: var(--main-color-green-1);
}
.web-link li a:hover {
	color: var(--main-color-green-2);
}

.content {
	width: 100%;
	min-width: 100%;
	flex-grow: 1;
}
footer {
	height: var(--height-footer);
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 14px;
	font-family: 'arial';
	letter-spacing: 0.5px;
	background-color: var(--bg-footer);
}

@media screen and (max-width: 1100px) {
	header { background-color: white; }
	.main-h1-green { font-size: 22px; }
}
