/* Możesz wrzucić to do app.css lub osobnego about.css */

.about-us-view .description-area {
    position: relative;
    z-index: 1;
    padding: 1rem;
}

.about-us-view .description-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/logo-duze.png');
    background-repeat: no-repeat;
    background-position: center calc(50% - 70px);
    background-size: 35%;
    filter: opacity(0.25);
    z-index: 0;
    pointer-events: none;
}

.about-us-description {
    position: relative;
    z-index: 1;
    font-size: 14px;
    text-align: left;
    margin: 0 auto;
    line-height: 1.7;
    color: #212529;
}

@media (max-width: 768px) {
    .about-us-description {
        font-size: 10px;
        text-align: left;
        margin: 0 auto;
        line-height: 1.5;
    }
}