@charset "utf-8";
/* Global Styles */


body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}
body {
	font-family: 'Capitana', sans-serif;
	background-color: #002538;
	text-align: center;
	}
header {
    height: 60px;	
    position: fixed;
    top: 10%;
    width: 100%;
    align-items: center;
    justify-content: center;
}
main {
    margin-top: 60px; /* Höhe des Headers */
    margin-bottom: 60px; /* Höhe des Footers */
    min-height: calc(100% - 200px); /* 100% minus Header- und Footer-Höhe */
	display: flex;
	flex-direction: column;
	align-items: center;
    justify-content: center;
	}
footer {
	height: 60px;
    position: fixed;
    bottom: 0;
    width: 100%;
	color: #eae8e6;
	font-size: 10px;
	font-weight: 400;
	opacity: 0.5;
}

/*-----Typo-----*/

h1 {
	color: #eae8e6;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}
h1 span {
	color:#ff5b19;
}
h2 {
	color:#ff5b19;
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	margin-top: 10%;
}	

/*-----Elements-----*/

 .contacts-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contacts {
	display: block;
	margin-bottom: 10%;
	clear: both;
	text-align: center;
}
.contacts img {
	width: 30px;
	display: inline-block;
	padding: 15px;
}
.contacts img:hover {
	opacity: 0.5;
}	

/* Mobile */
@media only screen and (min-width : 100px) and (max-width : 480px) {}
/* Tablet */
@media only screen and (min-width : 481px) and (max-width : 1024px) {}	
/* Desktop */
@media only screen and (min-width:1025px) {}