footer {
    background-color: var(--lightgreySP);
    height: 50px;
    min-height: 50px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    /* position: absolute;
    bottom: 0; */
    color: var(--digitalBlau);
    display: flex;
    flex-direction: row;
    align-items: center;
}

footer>div {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    /* margin-top: 15px; */
}

footer a {
    /* margin-left: 15px; */
    text-decoration: none;
    color: var(--digitalBlau);
}

footer a:not(:first-child) {
    margin-left: 15px;
}

footer>div>span {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer>div>span:last-of-type {
    /* background-color: brown; */
    margin-left: 15px;
}

/* Verkleinern des Footers bei kleinerem Bildschirm */
@media (max-width: 800px) {
    footer>div {
        /* margin-top: 12px; */
    }

    footer {
        height: 40px;
        min-height: 40px;
    }
}