/*Inspired by the design system advices article here :  https://www.designsystemscollective.com/design-system-best-practices-variables-d8e4c351a430*/
/* reset, body, typography, liens, listes */

.link {
    color: var(--text-color-default);
    transition: var(--transition-default);
    cursor: pointer;
}

.link:hover {
    color: var(--text-link-hover);
}