/*
   Dies sind die css-Elemente für die Darstellung von Text in drei Spalten...
   Ⓒ2020 kdmhennig@paulpjemand.de
   Formen entwickelt für das erneuerte PPJ-Projekt.
   Die Basis stammt von https://www.w3schools.com/
 */
* {
    box-sizing: border-box;
}

/* drei ungleiche Spalten */
.spalte {
    float: left;
    padding: 10px;
}

.zeile {
    display: flex;
    flex-wrap: nowrap;
    margin: auto;
}

.links {
    min-width: 250px;
    max-width: 300px;
    border-color: red;
    border-width: 0px;
    border-style: solid;
}

.rechts {
    flex-grow: 0;
    flex-basis: 400px;
    border-color: red;
    border-width: 0px;
    border-style: solid;
}

.mitte {
    width: 500px;
    flex-shrink: 0;
    border-color: blue;
    border-width: 0px;
    border-style: solid;
}

.unten {
    position: fixed;
    bottom: 100px;
}

/* Die Aufhebung des Float  */
.zeile:after {
    content: "";
    display: table;
    clear: both;
}

.backButton {
    position: fixed;
    bottom: 100px;
}

.kurz {
    max-width: 200px;
    font-size: 75%;
    color: #275d5b;
}

.tdkurz {
    width: 100px;
    font-size: 75%;
    text-align: center;
    color: #0000aa;
    border: 1px solid #aaaaaa;
    border-radius: 5px;
    background-color: #eeeeee;
}

.rechtsBild {
    width: 100%;
    max-width: 300px;
    height: auto;
}

@media only screen and (max-width: 800px) {
    .mitte {
        width: 100%;
    }
    .links {
        display: none;
    }
    .rechts {
        display: none;
    }
    .tdkurz {
        width: 0px;
        display: none;
    }
}
