body {
    background-size: cover;
	background-image: url(../src/img/background_small.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    margin: 0;
    padding: 0;
    font-family: "Open Sans",sans-serif;
    font-size: 16px;
    line-height: 170%;
}

@media screen and (max-width: 1024px) { /* Specific to this particular image */
  body {
    background-image: url(../src/img/bio_martin.jpg);
    background-position: center top;
  }
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

.center {
    margin: auto;
    text-align: center;
}

/*
    Header
*/

.home {
    width: 100%;
    height: 100vh;
    display: inline-block;
}

/*
	ENDE - Header
*/
/*
	Navigation Bar
*/

.navigation {
    background-color: #101010;
    height: 55px;
    margin-top: -55px;
}

.navigation div div {
    display: inline-block;
    min-width:8%;
}

.navigation div div a {
    display: block;
    padding: 14px 20px;
    margin-right: 10%;
    margin-left: 10%;
    
    color: #ffffff;
    text-decoration: none;
}

.navigation_fixed {
    margin-top: 0px;
	position: fixed; 
	top: 0;  
    left: 0;
    right: 0;
	z-index: 1;
}

/*
	ENDE - Navigation Bar
*/

/*
    Banner
*/

.banner_img:before {
    content: "";
    clear: both;
    display: block;
    height: calc(80vh - 300px);
}

.banner_img {
    z-index: -10;
}

.banner_img img{
    min-width: 512px;
    max-width: 50%;
    display: block;
    margin: auto; 
}


/*
    ENDE - Banner
*/