.underline-animation {
    @apply relative;
}
.underline-animation::after {
    @apply absolute w-0 h-[1px] center__x -bottom-1 rounded-full transition-all;
}
.underline-animation::after:hover {
    @apply w-full left-0 translate-x-0;
}
