footer {
    position: relative;
    width: 100%;
    height: 10vh;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    margin-bottom: 15px;
}
footer .footer-container {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25em;
}
footer a {
    text-decoration: none;
    color: var(--purple-6);
}
footer a:hover {
    text-decoration: underline;
}
footer .footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}
footer .footer-logo-image {
    mask: url("https://img.icons8.com/material-rounded/48/console.png");
    background: white;
    width: 48px;
    aspect-ratio: 1;
}
footer .footer-logo-text {
    margin-left: 5px;
}

@media (max-width: 800px) {    
    footer .footer-container {
        width: 90%;
    }
    footer .footer-logo {
        display: none;
    }
}