body{
    margin: 20px;
    margin: center;

    background-image: url(../images/styles/background_2.png);
    background-position: center; /* Center the Bild */
    background-repeat: no-repeat;

}

.container {
    margin: auto;

    display: grid;
    width: 100%;
    height: 100%;
    grid-template-areas:
    "img_LT img img img img_RT"
    "header header header header header"
    "navi_center navi_center navi_center navi_center navi_center"
    "sidebar_L sidebar_L breadcrumbs sidebar_R sidebar_R"
    "sidebar_L sidebar_L status sidebar_R sidebar_R"
    "sidebar_L sidebar_L content sidebar_R sidebar_R"
    "img_LB footer footer footer img_RB";
    grid-template-columns: 70px 130px 4fr 130px 70px;    /*Spalte*/
    grid-template-rows: 70px 300px 60px 60px 60px 600px 70px; /*Zeilen*/
}

.container > div {
    /*border: 2px dashed #888;*/
}

.img_LT {
    grid-area: img_LT;
    background-image: url(../images/styles/logo_kanten_links_oben_new_150_2.png);

    background-position: left top; /* left top the Bild */
    background-repeat: no-repeat;
}

.img {
    grid-area: img;
    border-top: 6px solid rgba(49,76,104,1);
    border-bottom: 2px solid rgba(49,76,104,1);
}

.img_RT {
    grid-area: img_RT;
    background-image: url(../images/styles/logo_kanten_rechts_oben_new_150_2.png);
    background-position: right top; /* left top the Bild */
    background-repeat: no-repeat;
    /*border: 1px solid rgba(230, 20, 23, 1);*/
}

.header {
    grid-area: header;
    border-left: 6px solid rgba(49,76,104,1);
    border-right: 6px solid rgba(49,76,104,1);

}

.navi_center {
    grid-area: navi_center;
    border-top: 2px solid rgba(49,76,104,1);
    border-left: 6px solid rgba(49,76,104,1);
    border-right: 6px solid rgba(49,76,104,1);
    border-bottom: 2px solid rgba(49,76,104,1);

}

.sidebar_L {
    grid-area: sidebar_L;
    border-left: 6px solid rgba(49,76,104,1);
}

.breadcrumbs {
    grid-area: breadcrumbs;
    border-left: 2px solid rgba(49,76,104,1);
    border-right: 2px solid rgba(49,76,104,1);
}

.sidebar_R {
    grid-area: sidebar_R;
    border-right: 6px solid rgba(49,76,104,1);
}

.status {
    grid-area: status;
    border-top: 2px solid rgba(49,76,104,1);
    border-left: 2px solid rgba(49,76,104,1);
    border-right: 2px solid rgba(49,76,104,1);
}

.content {
    grid-area: content;
    border: 2px solid rgba(49,76,104,1);
}

.img_LB {
    grid-area: img_LB;
    background-image: url(../images/styles/logo_kanten_links_unten_new_150_2.png);
    background-position: left bottom; /* left top the Bild */
    background-repeat: no-repeat;

}
.footer {
    grid-area: footer;
    border-bottom: 6px solid rgba(49,76,104,1);
    color: rgba(255,255,255,1.0);
    padding: top:10px;

}
.img_RB {
    grid-area: img_RB;
    background-image: url(../images/styles/logo_kanten_rechts_unten_new_150_2.png);
    background-position: right buttom; /* left top the Bild */
    background-repeat: no-repeat;
}



