.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;
}

p {
    line-height: 100%;
}

.pfooter {
    line-height: 100%;
}

.navigation {
    display: flex;
}

.nav {
    margin: 5px;
}

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


button {
    display: flex;
}


/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  top: 100%;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

.tooltip .tooltiptextleft {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  top: -5px;
  right: 105%;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}


/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip:hover .tooltiptextleft {
    visibility: visible;
}

em:hover .tooltiptext {
    visibility: visible;
}

/* Tooltip container für Bilder */
.toolimg {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.toolimg .toolimgbild {
  visibility: hidden;
  width: 640px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  top: 100%;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  left: -9999px;    
  z-index: 1;
}

.toolimg:hover .toolimgbild {
    visibility: visible;
    left: -700px;
    top: -200px;
}

/* Tooltip container für Bilder 800px*/
.toolimg800 {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.toolimg800 .toolimgbild800 {
  visibility: hidden;
  width: 800px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  top: 100%;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  left: -9999px;    
  z-index: 1;
}

.toolimg800:hover .toolimgbild800 {
    visibility: visible;
    left: -700px;
    top: -200px;
}
