.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.dozenten {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.dozenten img {
    height: 250px;
}

.dozent {
    margin-right: 150px;
}

.picture {
    margin-left: 20px;
}

.descr {
    margin-top: 50px;
}

.text-desc {
    margin-bottom: 40px;
}

.dd {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.ff {
    text-align: center;
    margin-right: 79px;
}

/* Адаптивность */
@media screen and (max-width: 768px) {
    .dozenten {
        align-items: center;
    }

    .dozenten img {
        height: 170px;
    }

    .dozent {
        margin-right: 0;
    }

    .picture {
        margin-left: 0;
    }

    .descr {
        margin-top: 30px;
    }

    .text-desc {
        margin-bottom: 20px;
    }

    .dd {
        flex-direction: column;
        align-items: center;
    }

    .ff {
        margin-right: 0;
    }
}