.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: rgb(17 24 39);;
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(220 38 38);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after{
    transform: scaleX(1);
    transform-origin: bottom left;
}

.gray.gray:hover{
    color: rgb(17 24 39);
}

.active {
    text-decoration: underline 2px rgb(220 38 38);
    text-underline-offset: 0.65em;
}
