@charset "utf-8";

nav {
    background-color: #fff;
    padding: 16px;
    padding-right: 300px;
    box-shadow: rgba(0,0,0,0.5) 0px 5px 5px;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1;
    text-align: center;
}
@media all and (max-width: 600px), screen and (max-height: 800px){
    nav {
        text-align: center;
        padding-left: 25px;
        padding-right: 25px;
        width: calc(100% - 50px);
    }
}
nav #logo {
    height: 100px;
    max-width: 100%;
    margin-right: 32px;
    vertical-align: middle;
}
@media all and (max-width: 600px), screen and (max-height: 800px){
    nav #logo {
        margin-right: 0px;
        margin-bottom: 10px;
        display: none;
    }
}
nav #links {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
    text-align: right;
}
@media all and (max-width: 600px), screen and (max-height: 800px){
    nav #links {
        display: block;
        white-space: normal;
    }
    nav .linksversteckt {
        max-height: 0px;
    }
}
nav .link {
    margin-left: 16px;
    margin-right: 8px;
    padding: 8px;
    border-bottom: 2px solid #000;
    vertical-align: middle;
    color: #000;
    white-space: nowrap;
    font-weight: bold;
    display: inline-block;
}
@media all and (max-width: 600px), screen and (max-height: 800px){
    nav .link {
        margin-top: 8px;
        text-align: left;
        display: block;
    }
}
nav .link:hover {
    border-bottom: 2px solid #0055a4;
}
nav .link.aktuell {
    border-bottom: 2px solid #0055a4;
}

nav #menubutton {
    cursor: pointer;
}
nav #menubutton {
    display: none;
}
@media all and (max-width: 600px), screen and (max-height: 800px){
    nav #menubutton {
        display: block;
        font-weight: bold;
        padding: 8px;
        border-bottom: 2px solid #000;
    }
}

#chefbild {
    position: absolute;
    width: 200px;
    top: 16px;
    left: calc(100% - 224px);
    border: 5px solid #fff;
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
    z-index: 2;
}
@media all and (max-width: 600px), screen and (max-height: 800px){
    #chefbild {
        display: none;
    }
}