/* HTML-Elemente */

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 15px;
    height: 100%;
}

body {
    background: #FFF;
    color: #000;
    font-family: Gill Sans, Helvetica, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: normal;
    height: 100%;
    display: flex;
    flex-direction: column;
}

a { 
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: underline;
}


ul {
    margin-top: 1rem;
}

li {
    margin-left: 3rem;
    margin-bottom: 0.3rem;
}

nav {
    vertical-align: top;
    width: 220px;
}

nav ul {
    list-style-type: none;
    margin: 0 0 0 50px;
}

nav ul img {
    height: 0.8rem;
}

nav ul li {
    margin-bottom: 1rem;
}

nav li {
    margin-left: 0;
}


main {
    vertical-align: top;
    padding-left: 20px;
    max-width: 450px;
}

article p {
    padding-top: 1rem;
    line-height: 1.25;
}

h1 {
    font-family: Gill Sans, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: normal;
    text-decoration: underline;
}

strong { 
    font-weight: bold; 
}

/* Textdesign */

.kursiv {
    font-style: italic;
}

.blocksatz {
    text-align: justify;
}

.unterstrichen {
    text-decoration: underline;
}


/* Seitendesign-Elemente */

.oberer-balken {
    height: 18px;
    background: #FFE097;
} 

.logoBereich {
    height: 121px;
    background: #FDF9CE;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo {
    height: 65px;
    width: 800px;
}

.design-container {
    flex: 1;
}

.haupt-container {
    display: flex;
    padding-top: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.mobile-nav-button {
    display: none;    
  }

.menue-inhalt {
    display: block;
  }

.fb_hinweis {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    margin-top: 1.5rem;
}

.fb_hinweis img {
    height: 1.2rem;
}

.seitenbild {
    vertical-align: top;
    width: 280px;
    padding-left: 120px;
}

.seitenbild img {
    width: 180px;
    height: 255px;
}

.unterer-balken {
    height: 18px;
    min-height: 18px;
    width: 100%;
    background: #FFE097;
    margin-top: 1rem;
}

.haupt-container {
    display: flex;
    padding-top: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;  
}


 /* Media Queries */   


 @media only screen and (max-width: 1100px) {

    .logo {
        height: auto;
        max-width: 90%;
    }

    .seitenbild {
        display: none;
    }

    main {
        padding: 0 10px 0 10px;
        margin: auto;
    }

 }

 @media only screen and (max-width: 768px) {

    .haupt-container {
        flex-direction: column;
        padding-top: 10px;
    }

    /* Mobile Navigation */
    .mobile-nav-button {
        display: inline-block;
        color: black;
        background-color: white;
        width: 68px;
        height: 23px;
        margin-left: 10px;
        cursor: pointer;
        background-image: url("../bilder/menueButton.jpg");
        background-size: auto;
      }

    .menue-inhalt {
        display: none;
      }

    nav {
        min-width: 320px;
        max-width: 100%;
    }
    
    nav:hover .menue-inhalt {
        display: flex;
        flex-wrap: wrap;
    }

    nav ul {
        margin-left: 10px;
        margin-top: 10px;
    }

    nav ul li {
        margin-left: 0px;
        width: 150px;
    }

    main {
        padding: 1rem 10px 0 10px;
        margin: auto;
    }

    .fb_hinweis {
        margin-top: 0rem;
    }


 }