#footer {
    background-color: var(--gee-color-tertiary);
    border-top: 4px solid var(--gee-color-primary);
}

#footer .footer-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
}

#footer .footer-menu .nav-link{
    color: var(--gee-color-primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    padding: 4px 0;
}

#footer .footer-menu .nav-link:hover {
    text-decoration-thickness: 4px;
}

#footer .footer-menu a.nav-link[aria-current="page"] {
    font-weight: bold;
    color: var(--gee-color-primary);
}