@function em ($size, $base-font: 16px) {
  @return $size * 1em / $base-font;
}

a {
  font-size: em($size: 14px);
  padding: em($size: 5px, $base-font: 10px);
}
