@font-face {
    font-family: 'LuckyLukeFont';
    src: url('fonts/Lucky_Luke.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Grundstil */
body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.6;    
    /* background: #edccb4;*/
    /* ganz gut background: #cc9966; #b84a3c #00008b*/
    background: #cc9966;
    min-width: 320px;
}

/* Hero-Bereich */
.hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;    
    top: 0;
    left: 0;
    width: 100%;    
    padding: 0;
    padding-bottom: 20px;
    z-index: 1000;
    background-color: #cc9966;
}

.face-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.face-image {
    width: 80%;
    height: auto;
}

.hero-content {
    padding: 0px;
    width: 100%;
}

.hero-title-wrapper {
    width: 100%;
    margin-top: 40px;
    background-color: #f8d40af0;
}

.hero-title {
    font-family: 'LuckyLukeFont', 'Arial Black', sans-serif;
    color: #f83a0a;
    font-size: 5rem;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 210px;
    text-align: center;
    text-shadow: 2px 2px #000;
    letter-spacing: 0.4em;
}

.hero-subtitle {
  text-align: right;
  margin-right: 20px;
  font-size: 1.5em;
  color: #8B0000;
  text-shadow: 1px 1px 2px #000;
}

#leer{
    min-height: 165px;
    background-color: #cc9966;
    border: 0px;
    margin: 0px;
    padding: 0px;
} 

/* Abschnitte */
.section {
    background-color: #996633;
    border: 2px solid black;
    border-radius: 10px;
    color: #f5f5dc;
    margin: 0em 1.4em 10em 1.4em;
    padding: 0px 15px 0px 15px;
}

.section h2 {
    font-size: 1.7rem;
}

.section-content {
    font-size: 1rem;
}

/* ************** */
/* Respsonsivness */
/* ************** */

@media (max-width: 719px) {
    .face-image{
        width: 30%;
    }   
    .hero-title-wrapper{
        margin-top: 20px;
    }   

    .hero-title{
        font-size: 1.7rem;
        margin-left: 45px;
        text-shadow: 1px 1px #000;
        letter-spacing: 0.4em;        
    } 

    .hero-subtitle{
        font-size: 0.8em;
        text-shadow: 1px 1px 1px #000;
    } 
    #leer{
        min-height: 120px;
    }     
    .section {
        margin: 0em 1.4em 5.5em 1.4em;
        padding: 0px 15px 0px 15px;
    }    
    .section h2{
        font-size: 1.2rem;
    } 
    .section-content{
        font-size: 0.8rem;
    }    
}

@media (min-width: 720px) {
    .face-image{
        width: 50%;
    }   
    .hero-title-wrapper{
        margin-top: 20px;
    }   

    .hero-title{
        font-size: 3.6rem;
        margin-left: 80px;
        text-shadow: 3px 3px #000;
        letter-spacing: 0.4em;        
    } 

    .hero-subtitle{
        font-size: 1.5em;
        text-shadow: 1px 1px 1px #000;
    } 
    #leer{
        min-height: 180px;
    }     
    .section {
        margin: 0em 2.5em 8.4em 2.5em;
        padding: 0px 15px 0px 15px;
    }    
    .section h2{
        font-size: 1.5rem;
    } 
    .section-content{
        font-size: 1rem;
    }    
}

@media (min-width: 1024px) {
    .face-image{
        width: 80%;
    }   
    .hero-title-wrapper{
        margin-top: 20px;
    }   

    .hero-title{
        font-size: 5.2rem;
        margin-left: 130px;
        text-shadow: 3px 3px #000;
        letter-spacing: 0.4em;        
    } 

    .hero-subtitle{
        font-size: 2.1em;
        text-shadow: 1px 1px 2px #000;
    } 
    #leer{
        min-height: 240px;
    }     
    .section {
        margin: 0em 4.5em 10.4em 4.5em;
        padding: 0px 25px 0px 25px;
    }    
    .section h2{
        font-size: 1.5rem;
    } 
    .section-content{
        font-size: 1rem;
    }    
}

