/* minimal reset.css */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    line-height: 1.5;               /* improve readability */
    -webkit-text-size-adjust: 100%; /* preserve user’s font-size preference */
  }
  
  html, body {
    margin: 0;
    padding: 0;
  }
  
  img, picture, video, canvas, svg {
    display: block;                 /* prevent inline whitespace */
    max-width: 100%;                /* responsive by default */
    height: auto;
  }
  
  input, button, textarea, select {
    font: inherit;                  /* unify form control typography */
    background: none;
    border: none;
    outline: none;
  }