@media (max-width:980px){
    #themenTable tr{
        display: grid;
        grid-template-columns: 1fr;
    }
    #themenTable tr td:nth-of-type(1) {
        grid-column: inherit;
    }
    .kleiner{
        width: 80%;
    }
    #kontakt {
        display: grid;
        grid-template-areas: "titel" "email" "team" "unterTitel" "endschuldigung";
        text-align: center;
        background-color: #f2f2f2;
        padding: 1%;
    }

    #kontakt #titel {
        grid-area: titel;
        font-size: 130%;
        font-weight: bold;
        margin-bottom: 10px;
    }

    #kontakt #email {
        grid-area: email;
        margin-left: auto;
        margin-right: auto;
        border-collapse: seperate;
        border-spacing: 7px;
        margin-bottom: 30px;
    }
    #kontakt #team {
        grid-area: team;
        display: grid;
        grid-template-areas: "markus laura torsten";
        grid-template-columns: 33.3% 33.3% 33.3%;
        margin-bottom: 10px;
    }
    #kontakt #markus{
        grid-area: markus;
        grid-column: 1;
    }
    #kontakt #laura{
        grid-area: laura;
        grid-column: 2;
    }
    #kontakt #torsten{
        grid-area: torsten;
        grid-column: 3;
    }
    #kontakt #unterTitel {
        grid-area: unterTitel;
        margin-bottom: 10px;
    }
    #kontakt #endschuldigung{
        grid-area: endschuldigung;
        margin-bottom: 10px;
    }
    #kontakt #team img {
        width: 60%;
    }
    form {
        background: white;
    }
    #programmheftSeite1{
        width: 27%;
        float:right;
    }
    .workshopDescription {
        background-color: #FBE5D6;
    }
    .ueberschrift {
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 20px;
    }
    .mitBild {
        display:grid;
        grid-template-areas: "ueberschrift . .""text text text" ". bild .";
        grid-template-columns: 43% 33% 23%;
    }
    .mitBild .ueberschrift{
        grid-area: ueberschrift;
    }
    .mitBild .text {
        grid-area: text;
    }
    .mitBild img {
        grid-area: bild;
    }
}