.grid-sprachen {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    grid-gap: 2rem;
}

.grid-sprachen > .column {
    grid-column: span 12;
    border-radius: 0.2em;
}
@media (min-width: 768px) {
    .grid-sprachen > .column {
        grid-column: span 6;
        border-radius: 0.2em;
    }
}
@media (min-width: 1024px) {
    .grid-sprachen > .column {
        grid-column: span 4;
        border-radius: 0.2em;
    }
}

section:last-child {
    margin-bottom: 0;
}

ul li {
    list-style: none;
}

img {
    width: 100%;
}

.inhalt {
    background-color: #e6e6e6;
    padding: 2rem;
    border-radius: 0.2em;
}

.inhalt ul li {
    list-style: disc;
}