@layer reset {
  /* @docs
  label: Core Remedies
  version: 0.1.0-beta.2

  note: |
    These remedies are recommended
    as a starter for any project.

  category: file
  */
  /* @docs
  label: Box Sizing

  note: |
    Use border-box by default, globally.

  category: global
  */
  *, ::before, ::after {
    box-sizing: border-box;
  }
  /* @docs
  label: Line Sizing

  note: |
    Consistent line-spacing,
    even when inline elements have different line-heights.

  links:
    - https://drafts.csswg.org/css-inline-3/#line-sizing-property

  category: global
  */
  html {
    line-sizing: normal;
  }
  /* @docs
  label: Body Margins

  note: |
    Remove the tiny space around the edge of the page.

  category: global
  */
  body {
    margin: 0;
  }
  /* @docs
  label: Heading Sizes

  note: |
    Switch to rem units for headings

  category: typography
  */
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.17rem;
  }
  h4 {
    font-size: 1rem;
  }
  h5 {
    font-size: 0.83rem;
  }
  h6 {
    font-size: 0.67rem;
  }
  /* @docs
  label: H1 Margins

  note: |
    Keep h1 margins consistent, even when nested.

  category: typography
  */
  h1 {
    margin: 0.67em 0;
  }
  /* @docs
  label: Pre Wrapping

  note: |
    Overflow by default is bad...

  category: typography
  */
  pre {
    white-space: pre-wrap;
  }
  /* @docs
  label: Horizontal Rule

  note: |
    1. Solid, thin horizontal rules
    2. Remove Firefox `color: gray`
    3. Remove default `1px` height, and common `overflow: hidden`

  category: typography
  */
  hr {
    border-style: solid;
    border-width: 1px 0 0;
    color: inherit;
    height: 0;
    overflow: visible;
  }
  /* @docs
  label: Responsive Embeds

  note: |
    1. Block display is usually what we want
    2. Remove strange space-below when inline
    3. Responsive by default

  category: embedded elements
  */
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
    max-width: 100%;
  }
  /* @docs
  label: Aspect Ratios

  note: |
    Maintain intrinsic aspect ratios when `max-width` is applied.
    `iframe`, `embed`, and `object` are also embedded,
    but have no intrinsic ratio,
    so their `height` needs to be set explicitly.

  category: embedded elements
  */
  img, svg, video, canvas {
    height: auto;
  }
  /* @docs
  label: Audio Width

  note: |
    There is no good reason elements default to 300px,
    and audio files are unlikely to come with a width attribute.

  category: embedded elements
  */
  audio {
    width: 100%;
  }
  /* @docs
  label: Image Borders

  note: |
    Remove the border on images inside links in IE 10 and earlier.

  category: legacy browsers
  */
  img {
    border-style: none;
  }
  /* @docs
  label: SVG Overflow

  note: |
    Hide the overflow in IE 10 and earlier.

  category: legacy browsers
  */
  svg {
    overflow: hidden;
  }
  /* @docs
  label: HTML5 Elements

  note: |
    Default block display on HTML5 elements

  category: legacy browsers
  */
  article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
  }
  /* @docs
  label: Checkbox & Radio Inputs

  note: |
    1. Add the correct box sizing in IE 10
    2. Remove the padding in IE 10

  category: legacy browsers
  */
  [type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0;
  }
  html {
    font-size: max(1em, 20px);
  }
  body {
    margin: var(--gap, 1em) var(--margin, var(--gap, 1em));
  }
  h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
    max-width: var(--measure, 75ch);
  }
  [hidden] {
    display: none !important;
  }
  dd,
dir,
menu,
ol,
ul,
blockquote,
figure {
    padding-inline: var(--gap, 1em);
  }
  nav,
header,
main,
footer,
section,
article,
details {
    margin-block: var(--gap, 1em);
  }
  main {
    border-block: thick double;
    padding-block: var(--gap, 1em);
  }
  table {
    width: 100%;
  }
  summary {
    cursor: pointer;
  }
  p:empty {
    display: none;
  }
  input,
select,
textarea {
    display: block;
    font: inherit;
    margin-block-end: 1em;
    width: 100%;
  }
  textarea {
    min-height: 6em;
  }
  button {
    cursor: pointer;
    font: inherit;
    margin: 0;
    padding: 0.25em 1em;
  }
  [aria-pressed=true] {
    border: medium solid;
  }
  img,
video,
audio,
iframe,
picture {
    max-width: 100%;
    height: auto;
    aspect-ratio: auto var(--ratio);
  }
  video,
iframe {
    --ratio: 16 / 9;
  }
  svg {
    fill: var(--fill, var(--svg, currentcolor));
    stroke: var(--stroke, var(--svg, currentcolor));
    stroke-width: 0;
  }
  [data-icon] {
    display: inline-block;
  }
}

/*# sourceMappingURL=reset.css.map */
