
.footer{
    background: var(--primary-color-light);
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer-navigation{
    max-width: 1440px;
    margin: 0 auto;
}

.footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 1rem;
    text-align: center;
    display: flex;
    justify-content: flex-end;
}

.footer-navigation a{
    color: white;
    text-decoration: none;
    margin: 1rem;
    transition: var(--hover-transition);
}

.footer-navigation a:hover{
    color: var(--nav-link-color-hover)
}