@font-face {
	font-family: "DIN";
	src: url('../font/DIN-Regular.ttf');
}
html, body{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}
body{
	font-family: "DIN";
	background: url('../img/background.jpg') center no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	color: #0a4a61;
	text-align: center;
	font-size:1.5rem;
}
header, footer{
	width: 33%;
	height: 33%;
}
header{
	background: url('../img/logo.png') center no-repeat;
	background-size: contain;
}
footer{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
h1, p{
	/*text-shadow: 2px 2px #000;*/
}
a{
	display: block;
	text-align: center;
	color: #fff;
	text-decoration: none;
}
a:hover{
	color: #fff;
	text-decoration: underline;
}
.tel{
	margin-top: 25px;
	font-weight: bold;
	letter-spacing: .0625em;
	word-spacing: .03125em;
	font-size: 1.5em;
}
.mail{
	font-size: 1.25em;
}
@media (max-width : 1024px){
	header, footer{
		width: 50%;
	}
}