html{
	height: 100%;
	overflow: hidden;
}

body{
	margin: 0;
	padding:0;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	perspective: 1px;
	transform-style: preserve-3d;
}

h1,h2, h3 {text-align: center;}

section{
	position: relative;
	box-sizing: border-box;
	//box-shadow: 0 -1px 10px rgba(0,0,0,0.7);
	min-height: 100vh;	
	padding: 25vh 10%;
	width: 100vw;	
	transform-style: preserve-3d;
}

.box{
	width: 50%;
	padding: 5%;
	border-radius: 5px;
	background-color: rgba(240,240,240,0.7);
	box-shadow: 0 0 8px rgba(0,0,0,0.7);
}

.clearfix:after{
	content: '';
	clear: both;
	display: block;
}


#para2 .box{
	float: right;
}

.image{
	position: absolute;
	top:50%;
	left: 35%;
	width: 320px;
	height: 240px;
	padding: 10px;
	background-color: rgba(240,240,240,0.7);
	//border-radius: 5px;
	//box-shadow: 0 0 8px rgba(0,0,0,0.7);
}

#bild1{
	transform: rotate(2deg) scale(0.75) translateX(-94%) translateY(-100%) translateZ(0.25px);	
}

#bild2{
	transform: rotate(-5deg) scale(0.6) translateX(-104%) translateY(-40%) translateZ(0.4px);	
}

#title{
	background-image: url(../images/bg1.jpg);
	background-attachment: fixed;
	background-position: 50% 50%;
	background-size: cover;
}

#para2{
	background-image: url(../images/bg3.jpg);
	background-attachment: fixed;
	background-position: 50% 50%;
	background-size: cover;		
}

section:before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

#para1:before{
	background-image: url(../images/bg2.jpg);
	background-position: 50% 50%;
	background-size: cover;
	z-index: -1;
	transform: translateZ(-1px) scale(2);
}

#para3:before{
	background-image: url(../images/bg1.jpg);
	background-position: 50% 50%;
	background-size: cover;
	z-index: -1;
	transform: translateZ(-1px) scale(2);
}




