

/* Reset
----------------------------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font--family);
  font-style: var(--font--style);
  font-weight: var(--font--weight);
  font-feature-settings: var(--font--feature-settings);
  font-size: var(--font--size-regular);
  line-height: var(--font--size-regular-line-height);
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}
