@font-face{
  font-family: 'Apoc';
  font-style: normal;
  font-weight: 100;
  src: url('./fonts/Apoc-Bold.eot'); /* IE9 Compat Modes */
  src: url('./fonts/Apoc-Bold.woff2') format('woff2'), /* Super Modern Browsers */
       url('./fonts/Apoc-Bold.woff') format('woff'); /* Modern Browsers */
}

@font-face{
  font-family: 'Calibre';
  font-style: normal;
  font-weight: 100;
  src: url('fonts/calibre-web-regular.eot'); /* IE9 Compat Modes */
  src: url('fonts/calibre-web-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/calibre-web-regular.woff') format('woff'); /* Modern Browsers */
}


body, html{
	width: 100%;
	padding: 0;
	margin: 0;
}

body{
	background-color: #888C72;
	color: #fff;
	font-family: 'Calibre';
	/*font-size: 1.7vw;
    line-height: 1.3em;*/
    font-size: 3vw;
    line-height: 1.6em;
}

a{
	color: inherit;
	text-decoration: none;
	display: inline-block;
	position: relative;
}

a:after,
.info p:after,
footer span:after,
p.close span:after{
	content: '';
    height: 1px;
    width: 70%;
    background: #fff;
    display: block;
    margin: auto;
    transition: all ease 0.5s;
    transform: scale(0);
}

a:hover:after,
.info p:hover:after,
footer span:hover:after,
p.close span:hover:after{
	opacity: 1;
	transform: scale(1);
}


footer span:after{
	background: #545744;
}

h1{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	text-align: center;
	font-family: 'Apoc';
	font-weight: 100;
	/*font-size: 5.2vw;*/
    line-height: 1.2em;
    font-size: 9vw;
}

#headerbild{
	position: relative;
	width: 100%;
}

#headerbild img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.info{
	height: 100px;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
}
.info p{
	cursor: pointer;
	display: inline-block;
}

#content{
	width: calc(100% - 30px);
	max-width: 1300px;
	margin: auto;
	text-align: center;
}

h2{
	font-family: 'Apoc';
	max-width: 1000px;
	margin: 100px auto;
	font-weight: 100;
	/*font-size: 4vw;*/
    font-size: 7vw;
    line-height: 1em;
}

hr{
	margin-bottom: 100px;
}

.col3{
	display: flex;
	justify-content: space-between;
}
.col3 p{
	width: calc(100% / 3 - 50px);
}

.col3 p a{
	font-family: 'Apoc';
	line-height: 1.2em;
	font-size: 4vw;
}

footer{
	margin: 100px 0px;
	color:#545744;
	text-align: center;
}

footer span{
	display: inline-block;
	margin: 0px 20px;
	cursor: pointer;
}



#datenschutz, #impressum{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: #888C72;
	z-index: 50;
	min-height: 100vh;
}

#datenschutz .inside, 
#impressum .inside{
	width: calc(100% - 30px);
	max-width: 1300px;
	margin: auto;
	text-align: center;
	margin-top: 15vw;
}
#datenschutz a, 
#impressum a{
	color: #545744;
	word-wrap: break-word;
}

#datenschutz a:after, 
#impressum a:after{
	background: #545744;
}

h3{
	font-weight: 100;
}

p.close{
	text-align: left;
	margin: 100px 0px;
}

p.close span{
	cursor: pointer;
	display: inline-block;
}

@media screen and (min-width:1300px){
	body{
		font-size: 32px;
		line-height: 40px
	}
	h1{
		font-size: 100px;
		line-height: 110px;
	}
	h2{
		font-size: 75px;
		line-height: 75px;
	}

	.col3 p a{
		font-size: 40px;
		line-height: 46px;
	}
}

@media screen and (max-width:500px){
	.info{
		height: 50px;
	}
	a:after,
	.info p:after,
	footer span:after,
	p.close span:after{
		transform: scale(1);
	}
	body{
		font-size: 24px;
		line-height: 30px
	}
	h1{
		font-size: 48px;
		line-height: 54px;
	}
	h2{
		margin: 50px auto;
		font-size: 40px;
		line-height: 42px;
	}

	hr{
		margin-bottom: 50px;
	}

	.col3{
		display: block;
	}

	.col3 p{
		width: 100%;
	}

	.col3 p a{
		font-size: 40px;
		line-height: 42px;
	}	

	footer{
		margin: 50px 0;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	footer span{
		display: inline-block;
		margin-bottom: 20px;
	}

	#datenschutz .inside, #impressum .inside{
		margin-top: 130px;
	}

	p.close{
		margin: 50px 0px;
	}
}

