/* ============================================================
   RESET — loaded before styles.css so every browser starts
   from the same baseline. Keep this file untouched; put all
   design decisions in styles.css.
   ============================================================ */

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

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
}

body{
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

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

iframe{
  border: 0;
}

ul[role='list'], ol[role='list']{
  list-style: none;
}

ul, ol{
  list-style: none;
}

a{
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button, input, textarea, select{
  background: none;
  border: none;
  color: inherit;
}

button{
  cursor: pointer;
}

button:disabled,
[aria-disabled='true']{
  cursor: default;
}

table{
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6{
  font-size: inherit;
  font-weight: inherit;
}

p, h1, h2, h3, h4, h5, h6{
  overflow-wrap: break-word;
}

fieldset{
  border: 0;
}

/* Respect motion preferences at the reset level too, so any
   consumer of this file gets the guarantee even before
   styles.css adds its own reduced-motion rules. */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}