/* Styling for terapeuter */
.behandlere {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(5, 1fr);
}
.behandlere a {
    margin: 0 auto;
    text-align: center;
}


@media only screen and (max-width: 480px) {
    .behandlere {
        display: grid;
        gap: 25px;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .container {
        padding: 10px; 
    }
}