a,
a:visited {
  color: #415ae7;
  text-decoration: none;
}

a {
  display: inline-block;
  position: relative;
}

a:not(.no-underline)::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #415ae7;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
