/* reset.css — box model and base reset */

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

html {
  font-size: 62.5%; /* 1rem = 10px */
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  /* Touch: remove tap highlight, prevent double-tap zoom */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  /* Minimum accessible touch target */
  min-height: 44px;
}

input {
  font: inherit;
}

img, svg {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}
