*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::-moz-selection {
  background-color: ui-color(gray-light);
}

::selection {
  background-color: ui-color(gray-light);
}

html {
  font-family: sans-serif;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;

  color: ui-color(blue);
  font-size: map-get($ui-body, base-font-size);
  font-family: $ui-font-specter-regular;
  line-height: map-get($ui-body, base-line-height);
  text-align: left;

  background-color: ui-color(white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: $ui-headings-margin-bottom;
}

p {
  margin-top: 0;
  margin-bottom: $ui-paragraph-margin-bottom;
}

strong,
b {
  @include ui-font-specter-medium;

  font-weight: normal;
}
