/* *** Allgemeine Styles *** */

html { box-sizing: border-box; }
*,*:before,*:after { box-sizing: inherit;}

body
{
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

b, strong, h1, h2,h3,h4,h5,h6
{
    font-weight: 700;
}

img
{
    max-width: 100%;
    height: auto;
}

.wrap
{
    width: 75%;
    margin: 0 auto;
}

.text-center
{
    text-align: center;
}

.btn
{
    display: inline-block;
    text-decoration: none;
}

.btn-holo
{
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 2em;
    color: #fff;
    padding: .5em 1em;
}

/* *** Header Styles *** */

body > header
{
    background: url('../img/header.jpg') center;
    background-size: cover;
    height: 400px;
    
    color: #fff;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 420px)
{
    body > header {height: 250px;}    
}

.logo
{
    max-width: 10%;
    height: auto;
}

@media (max-width: 800px)
{
    .logo {max-width: 20%; height: auto;}
}

@media (max-width: 600px)
{
    .logo {max-width: 30%; height: auto;}
}

@media (max-width: 420px)
{
    .logo {max-width: 25%; height: auto;}    
}

.header_slogan
{
    max-width: 30%;
    height: auto;
    margin: 1em 0 0 0;
}

@media (max-width: 600px)
{
    .header_slogan {max-width: 80%;}    
}

/* *** Main Styles *** */

.portfolioitems
{
    list-style: none;
    padding: 0;
    margin: 3em 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolioitems img { display: block; }

.portfolioitems img {
max-width:200%;
height:auto;
width: auto; /* ie 8 */
        
}

@media (max-width: 1000px)
{
    .portfolioitems li { flex-basis: 25%;}
    .portfolioitems img {
max-width:100%;
height:auto;
width: auto; /* ie 8 */
        
}
}

@media (max-width: 800px)
{
    .portfolioitems li { flex-basis: 33%; }
    .portfolioitems img {
max-width:150%;
height:auto;
width: auto; /* ie 8 */
        
}
}

@media (max-width: 600px)
{
    .portfolioitems li { flex-basis: 50%; }
    .portfolioitems img {
max-width:150%;
height:auto;
width: auto; /* ie 8 */
        
}
}

@media (max-width: 420px)
{
    .portfolioitems li { flex-basis: 100%;} 
    .portfolioitems img {
max-width:100%;
height:auto;
width: auto; /* ie 8 */       
}
    .left { max-width: 65%;}
}

#mood
{
    background: #f5f5f5;
}

.mooditems
{
    list-style: none;
    padding: 0;
    margin: 3em 0 0 0;
    display: flex;
    flex-wrap: wrap;
}

.mooditems li
{
    flex-basis: 20%;
}

.mooditems img { display: block; }

@media (max-width: 1000px)
{
    .mooditems li { flex-basis: 25%; }
}

@media (max-width: 800px)
{
    .mooditems li { flex-basis: 33%; }
}

@media (max-width: 600px)
{
    .mooditems li { flex-basis: 50%; }
    .web {display: none;}
}

@media (max-width: 420px)
{
    .mooditems li { flex-basis: 100%; }
    .web {display: none;}
}

/* *** About Styles *** */

#about h1
{ 
    font-family: 'Shadows Into Light', cursive;
    color: #b6ca01;
    font-size: 3em;
}


#about main 
{
    text-align: center;
    padding: 0;
    margin-left: 2em;
    margin-right: 2em;
}

.bild
{
    padding: 0;
    margin: 2em 0 0 0;
}

@media (max-width: 420px)
{ .bild img {max-width: 55%; }
}


/* *** Footer Styles *** */

footer 
{
    background-color: #b6ca01;
    height: 75px;

    color: #fff;
    
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

footer p
{    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;}

a:link { color: white;}