html{
    font-size: 62.5%; /* font-size 1em = 10px bei normaler Browser-Einstellung */
    font-family: 'Poppins', sans-serif;
}
body{
    display: flex;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment:fixed;
    overflow: auto;
    padding: 3rem 3rem 1rem 3rem;
}
*, *:before, *:after {
    box-sizing: border-box;
}

*{
    margin: 0;
    padding: 0;
    color: white;
}
.opacityEvent{
    opacity: 0.6;
    transition: opacity 0.5s ease;
}
/*------------------------------------------*/
.seiteWrapper{
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
/*    border: solid 1px black;*/
}
.seiteWrapper a{
    text-decoration: none; 
}
/*--------------********----------------------*/
#navWrapper{
    display: flex;
    flex-direction: row;
/*    border: solid 1px white;*/
}

#logoWrapper{
    flex-basis: 40%;
    display: flex;
    justify-content: flex-start;
/*            border: solid 1px white;    */
    }
/*------------------------------------------*/
#logoNav{ 
    text-transform: uppercase;
/*            border: solid 1px white;    */
} 
#logoV{
    font-size: 3rem;
    font-weight: 175;
    line-height: 3rem;
    text-align: center; 
/*            border: solid 1px white;    */
}
#logoN{
    font-size: 2.8rem;
    font-weight: 175;
    line-height: 2.8rem;
    padding-bottom: 1.2rem;
    text-align: center;
    /*border: solid 1px black;*/    
}
/*--------------********---------------------*/  
#mainNavWrapper{
    flex-basis: 60%;
/*            border: solid 1px white;    */
}

#mainNav{
    display: flex;
    justify-content: flex-end;
    font-size: 2.3rem;
           /* border: solid 1px white;    */
}
#vita{
    order: 1;
/*            border: solid 1px white;    */
}
#portfolio{
    order: 2;
    opacity: 0.6;
    padding: 0 6rem 0 6rem;
/*    border: solid 1px black;*/
}
#kontakt{
    order: 3;
/*            border: solid 1px white;    */
}

/*--------------///////---------------------*/
#portfolioNav{
    display: flex;
    justify-content: center;
    visibility: hidden;
    font-size: 1.9rem;
    line-height: 3rem;
/*            border: solid 1px white;    */
}
#fotografie,
#video,
#grafik,
#interactive{
    margin: 0 3rem 0 3rem;
}
/*-----------------------------------------*/       
.sectionContainer {
    display: flex;
    flex: 1;
/*border: solid 1px white;    */
}

.sectionContainer h1{
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-decoration: underline;
    opacity: 0.6;
}
.sectionContainer  h2{
    font-size: 2rem;
    opacity: 0.6;
}
.sectionContainer p{
    font-size: 1.8rem;
    opacity: 0.6;
}
.sectionContainer ul{
    font-size: 1.8rem;
    opacity: 0.6;
}
.sectionContainer span{
    opacity: 0.6;
    font-size: 1.8rem;
}
/*-----------------------------------------*/    
footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
/*            border: solid 1px white;    */
}
#datenschutz{
    font-size: 1.6rem; 
}        

/*-----------------------------------------*/
@media screen and (max-width: 1200px) {
    html{
        font-size: 64%;
    }
}

@media screen and (max-width: 1080px) {    
    #logoWrapper{
            flex-basis: 40%; 
            }
    #mainNavWrapper{
            flex-basis: 60%;
        }
} 

@media screen and (max-width: 820px) {		
    html{
        font-size: 59%;
    }
    #navWrapper{
        flex-direction: column; 
    }
    #logoWrapper{
        justify-content: center;
    }
    #mainNav{ 
        justify-content: space-around;
        }
    #portfolioNav{
        justify-content: space-around;
        }
    footer{
        justify-content:center;
    }
    
    #fotografie,
    #video,
    #grafik,
    #interactive{
         margin: 0;
    }
}
        
@media screen and (max-width: 600px) {    
    html{font-size: 56%;}
    body{
        padding: 3rem 1.5rem 1rem 1.5rem;
    }
    #mainNav{
        flex-direction: column;
        align-items: center;
    }
    #portfolioNav{
        justify-content: space-between;
    }
    #portfolio{
        order: 3;
    }
    #kontakt{
        order: 2;
    }
    #vita{
        order: 1;
    }
}
    
@media screen and (max-width: 480px) {    
    html{
        font-size: 52%;
    }
}    