/*Sticky footer*/

/*evtl. nötig um Footer unten zu halten*/
body {
    min-height: 100vh;
} 

.footer {
    color: black;
    text-align: center;
}

.footer-ul li{
    display: inline-block;
    margin: 1.5% 6%;
}

.sticky-footer {
    position: sticky;
    top: 100%;
}

.footer-ul a {
    color: black;
    text-decoration: none;
}

.footer-ul a:hover {
    color: grey;
}



