footer{
    display: flex;
    justify-content: space-between;
    background: var(--bg-primary-gradient);
    color: var(--text-inverse);
    align-items: center;
    padding: 10px 25px;
    border-radius: 25px 25px 0 0;
    font-family: var(--font-primary);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
}

footer p a{
    text-decoration: none;
    color: var(--text-inverse);
}


@media (max-width: 768px){
    footer{
        font-size: 8px;
    }
}