.title {
    color: black;

    background-image: url("./img/4_AuschnittTitel.jpg");
    background-repeat: no-repeat;
    height: 100px;
}

.visualisierung {
    display: grid;
    grid:
        'left right'
        'footer footer';
    grid-gap: 10px  
}

.seite {
    grid-area: left;
}

.text {
    grid-area: right;
}

.visfooter {
    grid-area: footer;
}

.navigation {
    display: flex;
}

.nav {
    margin: 5px;
}

.nav_right {
    margin: 5px;
    float: right;
}


p {
    line-height: 100%;
}