@font-face {
  font-family: 'Din Light';
  src: url(../fonts/DIN_Light_Regular.otf) format('otf');
}

html{
	max-width: 100vw;
	max-height: 100vh;
	overflow: hidden;
	font-size: 1vh;
}
body{
	font-family: 'Din Light', Arial, sans-serif;
	font-size: 1.5em;
	color: white;
	text-transform: uppercase;
	text-align: center;
	background-color: black;
	margin: 0px;
}
.bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/bg_IntroPage.jpg);
	background-size: cover;
	background-position: top center;
	display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
	-webkit-box-align: flex-end;
	-moz-box-align: flex-end;
	-ms-flex-align: flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.wrapper{
	max-width: 340px;
	margin: 10% auto 7%;
}
h1{
	font-size: 3em;
	font-weight: normal;
	margin-top: 3%;
}
h1:before {
    content: "";
    display: block;
    width: 70%;
    height: 1px;
    background: white;
    margin: 0 auto 15px;
}
a{
	color: white;
}
a.link{
	background-color: #77551d;
	padding: 8px 16px;
	text-decoration: none;
}
p.traditional-website{
	margin-top: 30%;
}
.zoom .bg{
	-webkit-transform: scale(2.5, 2.5);
	-ms-transform: scale(2.5, 2.5);
	transform: scale(2.5, 2.5);
	opacity: 0;
	transition: opacity 0.8s 1.2s, transform 2s;
}
.zoom .wrapper{
	opacity: 0;
	transition: opacity 1s;
}

@media (max-width: 1200px){
	.wrapper{
		margin-bottom: 15%;
	}
}

@media (max-height: 600px){
	html{
		font-size: 1.5vh;
	}
	.wrapper{
		margin-bottom: 2%;
	}
	p.traditional-website {
	    margin-top: 15%;
	}
}

@media (max-width: 600px){
	.wrapper{
		max-width: 100%;
		padding-left: 10%;
		padding-right: 10%;
		margin-bottom: 12%;
	}
	p.traditional-website {
	    max-width: 80%;
		margin: 15% auto 1%;
	}
}