@import url('https://fonts.googleapis.com/css?family=Sriracha');


body{
    height: 100vh;
    padding: 0%;
    margin: 0%;

    background-image: url("../bilder/seite/hintergrund.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;

    font-size: 1em;
    font-family: "arial";
}

#container{
    position: static;
    display: block;
    width: 98%;

    margin-left: 1%;
    margin-right: 1%;
    margin-top: 0%;
    margin-bottom: 0%;

    background-color: transparent;

}

#titel{
    position: static;
    display: block;
    width: 100%;

    margin-bottom: 1%;

    background-color: transparent;
}

#nav_schalter{
    display: none;
}


#nav_abdeckung{
    display: none;
}

#navigation{
    position: static;
    display: block;
    width: 20%;
    float: left;

    margin-right: 0%;
    margin-left: 0%;

    background-color: rgb(104, 104, 104);
    border-top-left-radius: 2vh;
    border-bottom-left-radius: 2vh;
}

#inhalt{
    position: static;
    display: block;
    float: left;
    width: 78%;

    background-color: rgba(180, 180, 180, 0.9);

    padding-left: 1%;
    padding-right: 1%;
    padding-bottom: 30vh;

    margin: 0%;

    min-height: 10vh;

    border-top-right-radius: 2vh;
    
}

#fusszeile{
    position: static;
    display: block;
    float: right;
    width: 78%;

    margin-right: 0%;
    margin-bottom: 5%;
    padding: 1%;

    background-color: #ffffff;

    border-bottom-left-radius: 2vh;
    border-bottom-right-radius: 2vh;
}

div.fusszeile_link_liste{
    display: block;
    float: left;
    width: 40%;
    padding-left: 10%;
    padding-right: 0%;
    
    line-height: 200%;
}


#titel img{
    width: 64%;
    margin-left: 28%;
}

#navigation div{
    position: static;
    display: block;
    background-color: transparent;
    padding-top: 15vh;
    padding-bottom: 15vh;
}

#navigation a{
    display: block;
    width: 98%;
    
    padding-top: 2%;
    padding-bottom: 2%;
    padding-left: 2%;
    text-align: left;
    text-decoration: none;

    background-color: #777;
    color: #00245a;

    border-width: 1px;

    border-top-style: solid;
    border-top-color:#662210;

    font-size: 150%;
    font-family: "Sriracha";

}

#navigation a:last-of-type{
    border-bottom-style: solid;
    border-bottom-color:#662210;
}

#navigation a:hover{
    background-color: #00245a;
    color: #777;
}

.fusszeile_link_liste a{
    margin-bottom: 3vh;
    color: #999;
}

.fusszeile_link_liste a:visited{
    color: #999;
}

.fusszeile_link_liste a:hover{
    color: #444;
}

p{
    margin-top: 1%;
    margin-bottom: 1%;
    font-size: 100%;
    width: 90%;
    margin-left: 5%;
}

h1{
    color: #662210;
    font-family: "Sriracha";
    font-size: 250%;
    text-decoration: underline;
    font-weight: bold;
    text-align: center;
}

h2{
    margin-top: 1%;
    margin-bottom: 1%;
    color: #00245a;
    font-family: "Sriracha";
    font-size: 200%;
    text-align: center;  
}

h3{
    margin-top: 1%;
    margin-bottom: 1%;
    color: #00245a;
    font-family: "Sriracha";
    font-size: 150%;
    text-align: left;
}

h4{
    margin-top: 1%;
    margin-bottom: 1%;
    color: #00245a;
    font-family: "Sriracha";
    font-size: 120%;
    text-align: left;   
}

h5{
    margin-top: 1%;
    margin-bottom: 1%;
    color: black;
    font-family: "Sriracha";
    font-size: 120%;
    text-align: left;
}

h6{
    margin-top: 1%;
    margin-bottom: 1%;
    color: black;
    font-size: 120%;
    text-align: left;
}


#inhalt>img{
    display: block;
    float: none;
    width: 90%;
    margin-left: 5%;
    margin-top: 1%;
    margin-bottom: 1%;
    
    border-style: solid;
    border-color: #000;
    border-width: 1px;
}


a{
    color: rgb(3, 0, 49);  
}

a:hover{
    color:  #662210;
}

a:visited{
    color:  rgb(49, 0, 23);
}








@media only all and (max-width: 750px){
    
    #titel img{
        width: 90%;
        margin-left: 5%;
    }

    #navigation{
        position: absolute;
        display: none;
        z-index: 10;
        width: 98%;

        left: -104%;
        top: 11vw;
        border-radius: 2vh;
    }

    #navigation div{
        padding-top: 2vh;
        padding-bottom: 2vh;
    }

    #nav_abdeckung{
        display: none;
        position: fixed;
        z-index: 5;
        top: 0px;
        left: 0px;
        width: 100vw;
        height: 100%;
        background-color:rgba(0,0,0,0.7);
    }

    #nav_schalter{
        position: absolute;
        z-index: 10;
        display: block;
        top: 0%;
        left: 0%;
        width: 10vw;
        
        background-color: #777;
    }

    #nav_schalter:hover{
        background-color: #00245a;
    }

    #nav_schalter img{
        display: block;
        width: 100%;
    }

    #inhalt{
        float: none;
        width: 98%;
        border-top-left-radius: 2vh;
        border-top-right-radius: 2vh;
    }

    #fusszeile{
        float: none;
        width: 98%;
        margin-left: 0%;
        margin-right: 0%;
    }

    div.fusszeile_link_liste{
        width: 80%;
        padding-left: 10%;
        margin-bottom: 2vh;
    }

}