footer {
    display: flex;
    justify-content: center;

    padding: 0.3rem;
    margin-top: auto;
    
    background-color: var(--secondary-color);
    color: var(--primary-color)
}

footer a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--accent-color);
}