@charset "utf-8";

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

:focus-visible {
  outline-offset: 3px;
}

:where(html) {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

:where(audio, iframe, img, svg, video) {
  max-block-size: 100%;
  max-inline-size: 100%;
}

:where(ul) {
  list-style: none;
}

:where(blockquote, q) {
  quotes: none;
}

:where(a) {
  text-decoration: none;
  color: inherit;
}

:where(img) {
  border: none;
  vertical-align: middle;
}

:where(table) {
  border-spacing: 0;
}

:where(summary) {
  display: block;
  cursor: pointer;
  &::-webkit-details-marker {
    display: none;
  }
}
