#contact_section{
    padding: 10px 0; /*Abstand von oben und rechts*/
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
     align-items: center;
     gap: 50px;
     flex-wrap: wrap;
}
.contact_container{
    width: 400px;
    max-width: 80%;
    }
#contact_section img{
    width: 300px;
    max-width: calc(90% - 30px);
    border: 10px solid var(--main-brand-color);
}
.contact_container h2{
    font-size: 20px;
}
.contact_container p{
    text-align: left;
    line-height: 120%;
}
@media(max-width:800px){
    #contact_section{
        padding: 30px 20px;
            }
            #contact_section h2{
                text-align: center;
                font-size: 70vw;
            }

}