.custom_links_loesungen {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.custom_links_loesungen_grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.custom_links_loesungen_flex_element {
    all: unset;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    padding: 3px;
    background-position: center;
    background-size: cover;
}
.custom_links_loesungen_flex_element_h3 {
    all: unset;
    display: flex;
    width: fit-content;
    background-color: #1BB76D;
    padding: 5px;
    color: #f7f7f7;
    text-align: center;
    font-size: 22px;
}

@media (max-width: 1200px) {
    .custom_links_loesungen_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .custom_links_loesungen_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}