/* FOOTER */

footer {
    background-color: #101010;
    padding: 15px;
    border-top: var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* FOOTER LOGO */

.footer-logo {
    display: flex;
    align-items: center;
    column-gap: 8px;
    text-decoration: none;
}

.footer-logo-image {
    width: 25px;
    height: 25px;
}

.footer-logo-text {
    color: white;
    font-size: 1rem;
    font-weight: 400;
}

/* FOOTER LINKS */

.footer-links {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 200;
}

.footer-link:hover {
    color: rgb(200,200,200);
}