section{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

#text-content{
    display: flex;
    flex-direction: column;
}

#portfolio-titel{
    font-size: 6rem;
}

p{
    font-size: 2rem;
}

img{
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

@media screen and (min-width: 640px){
    section{
        flex-direction: row;
        text-align: left;
        align-items: center;
        max-width: 900px;
        gap: 2rem;
    }

    img{ 
        max-width: 350px;
    }
}

@media screen and (min-width: 1024px){
    section{
        max-width: 1200px;
        gap: 3rem;
    }

    img{ 
        max-width: 450px;
    }
}