footer {
    display: flex;
    justify-content: center;
    width: 100%;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85em;

    .footer-content {
        display: flex;
        justify-content: center;
        width: 900px;
        height: 50px;
        align-items: center;

        p {
            color: var(--text-muted);
        }

        a {
            color: var(--text-sub);
            transition: 0.2s;

            &:hover {
                color: var(--text-main);
            }
        }
    }
}
