

/* Reset
----------------------------------------------------------------------------- */

html {
    box-sizing: border-box;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  h1, h2, h3, ul, figure {
    margin: 0;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    display: block;
    user-select: none;
  }
  
  * {
    -webkit-tap-highlight-color: rgb(0 0 0 / 0);
  }
  ul, ol {
    padding: 0;
    /* margin: 0; */
  }
  
  