
#inhalt-section{
    padding: 100px 0;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap-reverse;
}
.inhalt-container{
    width: 750px;
    max-width: 90%;
}
#inhalt-section img{
    width: 400px;
    max-width: calc(90% - 30px);
    border: 10px solid var(--text-color);
}
.inhalt-container h2{
    font-size: 40px;
}
.inhalt-container h3{
    margin-top: 10px;
    line-height: 150%;
}
h5{
    font-size: 20px;
    line-height: 150%;
    text-align: justify;

}
.inhalt-container p{
    text-align: justify;
    line-height: 150%;
}
.inhalt-container ul{
    line-height: 150%;
}
.inhalt-container li{
    margin-left: 40px;
}
.inhalt-container a{
    background-color: var(--main-brand-color);
    width: min-content;
    padding: 15px 40px;
    border-radius: 50px;
    margin: 0 auto;
    text-decoration: none;
    color: var(--text-coor);
    border: 4px solid var(--main-brand-color);
    transition: 150ms ease-in-out;
    display: flex;
}
.inhalt-container a:hover{
    background: transparent;
}
@media(max-width: 800px){
    #inhalt-section{
        padding: 50px 0;
    }
    #inhalt-section h2{
        text-align: center;
        font-size: 8vw;
    }
    #inhalt-section h3{
        text-align: center;
        font-size: 6vw;
    }
}