body {
    background-image: url("../img/AdobeStock_386571499.webp");
    background-size: cover;
}

#about {
    background: rgba(255, 255, 255, 0.167); /* Weiß mit 30 % Deckkraft */
    backdrop-filter: blur(10px); /* Unschärfe-Effekt */
    -webkit-backdrop-filter: blur(10px); /* Safari-Unterstützung */
    border-radius: 12px; /* Abgerundete Ecken */
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sanfter Schatten */
}

h1, p {
    text-shadow: 2px 2px 2px #000000;
}

#about-content figure {
    width: 80%;
    margin:auto;
}
/*++++++++++++++++++++++++++++++++++++ Kreis und Bild +++++++++++++++++++++++++++++++++++*/
figure {
    position: relative;
    display: inline-block;
    display: flex;
    justify-content: center; 
    align-items: center;
    aspect-ratio: 1/1;
}

figure img {
    width: 100%;
}

#send-mail {
 font-size: 1em;
 padding: 0px 20px;

}

#send-mail p {
 text-shadow: none;
}

#personal-info p {
    margin: 20px 0;
    font-size: 2em;
}

@media only screen and (max-width: 800px) {
    #about {
        padding-top: 50px;
        background: none;
    }
    #about-content, #work-philosophy {
    padding: 20px 0;
    }

    body {
        background: #000;
    }
}

@media only screen and (min-width: 800px) {
    #about-content { 
        margin-top:50px;
    }
    #about-content figure {
        margin: auto;
    }
    #work-philosophy {
        padding: 0px 20px 20px 20px;
    }
}

@media only screen and (min-width: 1200px) {

    #about {
        max-width: 1200px;
        flex-direction: row;
        gap: 20px;
    }

    #about-content, #work-philosophy {
        width: 50%;
        padding: 50px;
        display: flex;
        justify-content: center; 
        align-items: center;
        flex-direction: column;
    }

    #work-philosophy p, h1 {
        text-align: left;
    }

    #about-content {
        border-right: 1px solid #fff;
    }

}








