body {
  width: 100%;
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
}

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

:where(img, svg) {
  width: 100%;
  height: auto;
  display: block;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block
}

:where(h1, h2, h3, h4, h5, h6, p, div, dl, dt, dd, ul, ol, li, a) {
  font-size: 1.4rem;
}

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

:where(button) {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  color: inherit;
}

:where(details) {
  display: block;
}

:where(details summary) {
  cursor: pointer;
  list-style: none;
  text-align: left;
}

:where(details summary::-webkit-details-marker) {
  display: none;
}

@media (prefers-reduced-motion:no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth
  }
}
:where(input, button, textarea, select) {
  color: inherit
}

:where(button, label, select, summary, [role='button'], [role='option']) {
  cursor: pointer
}

:where(:disabled) {
  cursor: not-allowed
}

:where(label:has(>input:disabled), label:has(+input:disabled)) {
  cursor: not-allowed
}

:where(a) {
  color: inherit;
}


