/* Parallax wurde bereitgestellt von "http://keithclark.co.uk/articles/pure-css-parallax-websites" */
@charset "utf-8";
header{
z-index: 100; 
position: fixed;
background-image: url(../img/bg.png);
background-size: cover;
}
/* ---------------- Parallax -> ---------------- */
html {
height: 100%;
overflow: hidden;
}
body {
height: 100%;
overflow: hidden;
margin:0;
padding:0;
}
main {
position: absolute;
perspective: 1px;
transform-style: preserve-3d;
height: 100%;
overflow-y: scroll;
overflow-x: hidden;
font-family: "Garamond";
}
main h3 {
font-size: 250%
}
main p {
font-size: 140%;
line-height: 150%;
font-weight: bold;
color: black;
}
.para {
position: relative;
padding: 25vh 10%;
min-height: 100vh;
width: 100vw;
box-sizing: border-box;
transform-style: inherit;
}
.p2, .p3, .p4, .p5, .p6, .p7 {
box-shadow: 0px -1px 10px rgba(0, 0, 0, .7);
}
main img {
position: absolute;
top: 50%;
left: 35%;
width: 320px;
height: 240px;
transform: translateZ(.25px) scale(.75) translateX(-94%) translateY(-100%) rotate(2deg);
padding: 10px;
border-radius: 5px;
background: rgba(240,230,220, .7);
box-shadow: 0 0 8px rgba(0, 0, 0, .7);
}
main img:last-of-type {
transform: translateZ(.4px) scale(.6) translateX(-104%) translateY(-40%) rotate(-5deg);
}
.para:before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left:0;
right:0;
}
.title {
width: 50%;
padding: 5%;
border-radius: 5px;
background: rgba(240,230,220, .7);
box-shadow: 0 0 8px rgba(0, 0, 0, .7);
}
.para:nth-child(2n) .title {
margin-left: 0;
margin-right: auto;
}
.para:nth-child(2n+1) .title {
margin-left: auto;
margin-right: 0;
}
.para, .para:before {
background: 50% 50% / cover;  
}
.header {
margin-top: 180px;
text-align: center;
font-size: 175%;
color: #fff;
text-shadow: 0 2px 2px #000;
}
.ende{
text-align: center;
font-size: 175%;
color: black;
}
#title {
background-image: url("../img/para/main.jpg");
background-attachment: fixed;
}
#para1:before {
background-image: url("../img/para/balkon.jpg");
transform: translateZ(-1px) scale(2);
z-index:-1;
}
#para2 {
background-image: url("../img/para/podest.jpg");
background-attachment: fixed;
}
#para3:before {
background-image: url("../img/para/brustung.jpg");
transform: translateZ(-1px) scale(2);
z-index:-1;
}
#para4 {
background-image: url("../img/para/treppe.jpg");
background-attachment: fixed;
}
#para5:before {
background-image: url("../img/para/historisch.jpg");
transform: translateZ(-1px) scale(2);
z-index:-1;
}
#para6 {
background-image: url("../img/bg.png");
background-attachment: fixed;
}
/* ----------- Parallax Navigation -> ----------- */
.parallax_nav {
position:fixed;
top: 50%;
right: 20px;
z-index: 2;
}
.parallax_nav ul{
list-style-type:none;
}
.para_nav{
margin-top: 10px;
width: 30px;
height: 30px;
background-repeat: no-repeat;
}
.pn1{
background-image: url("../img/menu/29.png");
}
.pn1:hover{
background-image: url("../img/menu/30.png");
}
.pn2{
background-image: url("../img/menu/25.png");
}
.pn2:hover{
background-image: url("../img/menu/26.png");
}
.pn3{
background-image: url("../img/menu/27.png");
}
.pn3:hover{
background-image: url("../img/menu/28.png");
}
.pn4{
background-image: url("../img/menu/21.png");
}
.pn4:hover{
background-image: url("../img/menu/22.png");
}
.pn5{
background-image: url("../img/menu/23.png");
}
.pn5:hover{
background-image: url("../img/menu/24.png");
}
/* ----------- Parallax Navigation <- ----------- */
/* ---------------- Parallax <- ---------------- */