@charset "utf-8";
/* CSS Document */

.hero {
    /* Sizing */
    width: auto;
    height: 100vh;
    
    /* Flexbox stuff */
    display: flex;
    justify-content: flex-start;
    align-items: center;
	padding: 5%;
    
    /* Text styles */
    text-align: left;
    color: white; /* ADD THIS LINE */
    
    /* Background styles */
    background-image: url("images/hero.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero h1 {
    font-family: baskerville-urw,serif;
	font-weight: 400;
	font-style: italic;
	font-size: 6em;
	color: #F2071B;
    
    /* Margins */
    margin-top: 0;
    margin-bottom: 0.5em;
}

*{
  	font-family: baskerville-urw,serif;
	font-weight: 400;
	font-style: normal;
	background-color: #C7C6BF;
	color: #2F1B14;
}

h1{
	font-family: fino-sans;
	font-weight: 400;
	font-style: regular;
}

.navbar{
	display: flex;
}

.navbar-brand{
	font-family: fino-sans;
	font-weight: 400;
	font-style: regular;
	padding-left: 4%;
	font-size: 2.5em;
	color: #F2071B;
}
.nav-link{
	font-family: fino-sans;
	font-weight: 400;
	font-style: regular;
	font-size: 1.5em;
	color: #826757;
	justify-content: flex-end;
	align-items: flex-end;
}


.navbar-brand:hover{
	color: #F2071B;
	
}

.beitrag_bs{
	padding-bottom: 20%;
	padding-top: 20%;
}

.navbar{
	padding-top: 4%;
}

.nav-link:hover{
	text-decoration: underline;
	font-family: fino-sans;
	font-weight: 400;
	font-style: regular;
	font-size: 1.5em;
	color: #826757;
}

h2{
  	font-family: baskerville-urw,serif;
	font-weight: 400;
	font-style: italic;
}

.video{
	padding-top: 10%;
	padding-bottom: 10%;
}

.folder{
	padding-bottom: 10%;
}

.impressum{
	color: #826757;
	font-family: fino-sans;
	font-weight: 400;
	font-style: regular;
	font-size: 1.25em;
}

footer .nav-link{
	font-size: 1.25em;
}

footer .nav-link:hover{
	font-size: 1.25em;
}




