*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family: 'Henny Penny';
    font-family: 'Carter One';
    font-family: 'Roboto';   
}
ul{
    display: none;
}

header{
    height: 100vh;
}
header > section:nth-child(1){
    
}

header > section:nth-child(2){
    height: 100vh;
}

#vorhang-cont{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.vorhang{
    position: absolute;
    transition: .4s all ease;
}
.open-vorhang{
    width: 35vw;
    height: 35vw;
    border-radius: 50%;
    border: 2px solid forestgreen;
    background-color: lawngreen;
    color: firebrick;
    font-family: 'Henny Penny';
    font-size: 40px;
    margin: 0 auto;
    transform: translate(0, calc(50vh - 12vw)) rotate(-15deg);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}
#stage-vorhang{
    width: 100%;
    height: 15%;
    bottom: 0;
    background-color: indianred;
}
.left-vorhang{
    width: 50%;
    height: 100%;
    left: 0;
    background-color: darkred;
}
.right-vorhang{
    width: 50%;
    height: 100%;
    right: 0;
    background-color: darkred;
}
#top-vorhang{
    width: 100%;
    height: 15%;
    background-color: mediumvioletred;
}

.open-vorhang2{
    transform: translate(0, calc(50vh - 20vw)) rotate(360deg);
    width: 50vw;
    height: 50vw;
    margin: 0 auto;
    opacity: 0;
    transition: 1s all ease;
}
.left-vorhang2{
    left: -35%;
    transition: 1s all ease;
}
.right-vorhang2{
    right: -35%;
    transition: 1s all ease;
}













section > h1{
    font-family: 'Carter One';
    font-size: 3em;
    letter-spacing: 1px;
    transform: translate(0em,-8em);
}
.balken{
    width: .1em;
    height: 8em;
/*    background-color: #555;*/
    opacity: .3;
}
h1 > span{
    display: block;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0 5px 30px 0 rgba(227, 105, 223, 0.5);
    padding: 0 15px;
}
h1 > span:nth-child(1){
    text-align: left;
    animation: movThe 7s ease infinite;
    z-index: 14;
}
@keyframes movThe{
    0%{
        transform: 
            translate(10vw,30vh)
            rotate(5deg);
    }
    50%{
        transform: 
            translate(20vw,30vh)
            rotate(-5deg);
    }
    100%{
        transform: 
            translate(10vw,30vh)
            rotate(5deg);
    }
}
h1 > span:nth-child(2){
    text-align: right;
    animation: movDer 10s ease infinite;
    z-index: 13;
}
@keyframes movDer{
    0%{
        transform: 
            translate(15vw,40vh)
            rotate(5deg);
    }
    50%{
        transform: 
            translate(35vw,40vh)
            rotate(-5deg);
    }
    100%{
        transform: 
            translate(15vw,40vh)
            rotate(5deg);
    }
}
h1 > span:nth-child(3){
    text-align: right;
    animation: movKle 13s ease infinite;
    z-index: 12;
}
@keyframes movKle{
    0%{
        transform: 
            translate(25vw,50vh)
            rotate(8deg);
    }
    50%{
        transform: 
            translate(50vw,50vh)
            rotate(-8deg);
    }
    100%{
        transform: 
            translate(25vw,50vh)
            rotate(8deg);
    }
}
h1 > span:nth-child(4){
    text-align: right;
    animation: movFor 15s ease infinite;
    z-index: 11;
}
@keyframes movFor{
    0%{
        transform: 
            translate(25vw,60vh)
            rotate(10deg);
    }
    50%{
        transform: 
            translate(50vw,60vh)
            rotate(-10deg);
    }
    100%{
        transform: 
            translate(25vw,60vh)
            rotate(10deg);
    }
}
















#klamsi{}