*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  line-height: var(--leading-tight);
}

a {
  color: inherit;
  text-decoration-skip-ink: auto;
}

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--color-clay);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
