#about_me_section{
    padding: 100px, 0;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap-reverse;  /* damit nicht zwei Bilder beim Umbrch nacheinander kommen */
}
.about_me_container{
    width: 750px;
    max-width: 90%; /* sonst */
}
#about_me_section img{
    width: 400px;
    max-width: calc(90% - 30px);  /* da 2 x 15px als border */
    border: 15px solid var(--text-color);
}
.about_me_container h2{
    font-size: 80px;
}
.about_me_container p{
    text-align: justify;  /* Blocksatz */
    line-height: 175%;  /* Zeilenabstand */
}
@media (max-width: 800PX){
    #about_me_section{
        padding: 50px 0
    }
    #about_me_section h2{
        text-align: center;
        font-size: 12vw;
    }
}