footer {
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 3rem;
    margin: 0 auto;
    border-bottom: none;
    box-shadow: 0 ;
}

.footer-content a {
    font-size: 1rem;
    text-decoration: none;
    color: var(--text);
}

.footer-content a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.lang-switcher {
    text-align: center;
    padding: 0.5rem;
    color: var(--text) !important;
    transition: 0.2s;
    cursor: pointer;
}

.lang-switcher:hover {
    text-decoration: underline;
    box-shadow: 10px 10px var(--shadow);
    border-top: 1px solid var(--highlight-hover);    
    border-left: 1px solid var(--highlight-hover);    
}