*{
    box-sizing:border-box;
}

body {
    margin:0;
    font-family:Verdana, Arial, sans-serif;
    background:#FF7832;
}

#container {
    width:100%;
    max-width:1000px;
    margin:auto;
    background:#fff;
    border-left:2px solid #484848;
    border-right:2px solid #484848;
    border-bottom:2px solid #484848;
}


/* Kopf */

#masthead {
    background:#FF7832;
}


/* Menü */

#navigation {
    background:#fea;
    border-top:1px solid #808080;
    border-bottom:1px solid #808080;
}

#navigation ul {
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}

#navigation a {
    display:block;
    padding:8px;
    color:#8b0000;
    text-decoration:none;
    font-weight:bold;
}


/* Inhalt */

#column_l {
    width:100%;
    padding:0;
    background:#fff;
}

#vscontent0 {
    position:relative;
    background:#FFE4AA;
    max-width:995px;
    width:100%;
    min-height:760px;
    margin:0 auto;
    overflow:hidden;
}


/* Handy Grundregeln */

@media(max-width:700px){

    #navigation ul {
        flex-direction:column;
    }

    #navigation a {
        text-align:center;
    }

    #vscontent0 {
        width:100%;
        min-height:auto;
    }

    img {
        max-width:100%;
        height:auto;
    }
}