/* FONTS */
h1 {
	font-size: 36px;
	text-align: center;
}
h2 {
	font-size: 32px;
	text-align: center;
}
h3 {
	font-size: 28px;
	text-align: center;
}
h4 {
	font-size: 24px;
	text-align: center;
}
h5 {
	font-size: 20px;
	text-align: center;
}
h6 {
	font-size: 16px;
	text-align: center;
}
p {
	font-size: 12px;
	text-align: center;
}
/* ELEMENTS */
html {
	height: 100%;
}
body {
	background-color: #FFFFFF;
	margin: 0px;
	height: 100%;
}
main {
	height: 100%;
}
footer {
	bottom: 0;
	position: fixed;
	z-index: 2;
	width: 100%;
}
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    background-color: #A9A9A9;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
li {
    display: inline-block;
    text-align: right;
    padding: 2px 5px;
}
li a {
    color: white;
    text-decoration: none;
}
li a:hover {
    background-color: #1A3663;
}
/* CLASSES */
.icon {
	display: block;
	margin: 15px auto;
	max-width: 91px;
}
/* IDS */
#background::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image: url('/images/background.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#background {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #037d9e;
	background: -webkit-linear-gradient(bottom, #037D9E, #15375F);
	background: -o-linear-gradient(bottom, #037D9E, #15375F);
	background: -moz-linear-gradient(bottom, #037D9E, #15375F);
	background: linear-gradient(bottom, #037D9E, #15375F);
	position: relative;
	z-index: 1;
}
#container {
	min-width: 228px;
	min-height: 228px;
	width: 465px;
	height: 465px;
	max-width: 50%;
	max-height: 50%;
	background: #FFFFFF;
	border-radius: 25px;
	overflow: hidden;
	z-index: 2;
	justify-content: center;
	align-items: center;
	font-family: "Times New Roman";
	font-size: 18px;
	text-align: center;
	line-height: 1;
	color: #000000;
	margin: 0px auto;
	position: relative;
}
#content {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#footer {
	margin: auto;
	font-size: 12px;
	text-align:center;
	height: 13px;
	min-width: 228px;
	width: 465px;
	max-width: 50%;
	background:#808080;
	border-radius: 25px;
	opacity: 0.75;
}
#image {
	display: block;
	margin: 15px auto;
    max-width: 222px;
	border-radius: 5%;
	top: 0;
}