a {
    display: inline-block;
    color: white;
    text-decoration: none;
}

a:not(.no-animation)::after {
    content: '';
    display: block;
    margin: auto;
    width: 0;
    height: 2px;
    background: white;
    transition: width .3s ease;
}

.left-ease:not(.no-animation)::after {
    margin: unset;
}

a:not(.no-animation):hover::after {
    width: 100%;
}

a:visited {
    text-decoration: none;
    color: white;
}