html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

a {
  color: $color-blue;
  transition: color 0.3s;

  &:hover,
  &:active {
    color: $color-blue-dark;
    text-decoration: none;
  }
}
