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

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

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

: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;
}