footer {
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: var(--footer-height);
    z-index: -5;
    text-align: center;
    background-color: var(--brandcol-xdark);
    color: var(--white);
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.footer-inner{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
}

footer li{
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}

.footer-backtotop{
    position: absolute;
    left: 2vw;
    bottom: 2vw;
    color: var(--brandcol-accent);
}

.footer-protected{
    position: absolute;
    right: 2vw;
    bottom: 2vw;
    color: var(--brandcol-accent);
}

.footer-label{
    position: absolute;
    bottom: 2vw;
    left: 50%;
    transform: translate(-50%, -0%);
    color: var(--brandcol-accent);
}