#footer-background {
    box-sizing: border-box;
    width: 100%;
    background: var(--light-background);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

#footer-box {
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px; /* optional: verhindert, dass alles zu breit zieht */
    background: var(--light-background);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
    font-size: 9px;
    color: var(--maincolor-text);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.link {
    width: auto;
    margin: 3px auto;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    padding: 5px;
    background: var(--base-color);
    font-size: 8px;
    color: var(--muted-tone) !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}