.footer {
    background-color: var(--bg);
    color: var(--white);
    padding: 2rem 1rem;
    border-top: 1px solid var(--border);
    font-family: monospace;
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer__links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__links a {
    color: var(--white);
    font-size: 2.2rem;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;

}

.footer__links a:hover {
    color: var(--accent);
}

.footer__copyright {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}

@media screen and (min-width: 992px) {
    .footer__container {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
}