/* Seitenspezifische Elemente, die nicht in der allgemeinen style.css vorkommen oder
Elemente in dieser überschreiben */

.seitenbild_profil {
    vertical-align: top;
    width: 280px;
    padding-left: 120px;
}

.seitenbild_profil img {
    width: 150px;
    height: 150px;
    margin-top: 3rem;
}

h2 {
    padding-top: 2rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: normal;  
}

ul {
    list-style-type: circle;
}

li {
    margin-left: 1.5rem;
}

.profilbild_mobil {
    display: none;
}


 /* Media Queries */   

 @media only screen and (max-width: 1100px) {

    .seitenbild_profil {
        display: none;
    }

    .profilbild_mobil {
        display: inline-block;
        margin-top: 1rem;
    }

 }

 @media only screen and (max-width: 768px) {

    /* derzeit nichts für diese Seite vorhanden */
    
}