/* CSS Document */
html{	
	
	width: 100%;
	height: 100%;
}
body,td,th {
}
body {
	color: #001E44;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 20px;
	/*
	background-image: url(index.jpg);
	background-repeat: no-repeat;
  background-size: cover;
	background-position: center;
	*/
	background: url(index.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
	
	display: flex;
	justify-content: center ;
	align-items: center;
	
	height: 100%;
}
.content {
  flex: 1;
	margin: 2em;
	padding: 30px;	
	text-align: center;	
  background-color:rgba(255,255,255,0.85);
	border-radius: 50px;
}
h1,h2,h3,h4{	
}
h1{
	font-size: 2em;
	line-height: 2.1em
}
h2{
	font-size: 1.3em;
	line-height: 1.4em
}
h3{
	font-size: 1.2em;
	line-height: 1.3em
}

a[href^='http'], 
a[href^='mail'],
a[href^='tel']{
	color: #611822;
	font-weight: bold;
}
a[href^='http']::after {
  position: relative;
  content: '';
  display: inline-block;
	width: 1em;
  height: 1em;
  margin-left: 0.25em;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewbox='0 0 12.2 12.2' width='14' height='14'%3E%3Cpath d='M5.7 0v1.5h4L4.5 6.7l1 1.1 5.3-5.2v3.9h1.4V0z'/%3E%3Cpath fill='none' d='M3.4 6.7l3-2.9H1.5v7h7V5.9l-3 2.9z'/%3E%3Cpath d='M8.5 5.9v4.9h-7v-7h4.9l1.5-1.6H0v10h10V4.4z'/%3E%3C/svg%3E");
  transform: translateY(0.25em);
}

@media screen and (max-width: 460px) {
	body{
		font-size: 2em;
	}
}
/*@media screen {
.content {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 1360px;
}
}
@media screen and (min-width: 1400px) {
.content {
	width: 1360px;
	text-align: left;
}
}
.text-center {
text-align:center;    
}
*/