.cool-link {
  display: inline-block;
  color: #000;
  text-decoration: none; }

.cool-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .3s; }

.cool-link:hover::after {
  width: 100%; }
