footer {
    user-select: none;
    display: inline-flex;
    justify-content: space-between;
    background-color: var(--nav-color);
    margin-top: auto;
    user-select: none;
    align-items: center;
    color: #385a81;
    padding: 15px;
}


footer h1 {
    text-align: center;
    font-size: 20px;
    margin-left: 10px;
}

.footer-link {
    display: inline-flex;
    flex-direction: column;
    margin-right: 10px;
    gap: 4px;
}

.footer-link a {
    color: #385a81;
    text-decoration: none;
    transition: all 0.8s;
}

.footer-link a:hover {
    background-color: rgb(23, 23, 55);
    overflow: hidden;
    color: #3c74b3;

}