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


/*
  3. Allow percentage-based heights in the application
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
html,
body {
  height: 100%;
  font-size: 100%;

  line-height: 1.7;
  -webkit-font-smoothing: antialiased;

  scroll-behavior: smooth;
}
/*
  6. Improve media defaults
*/
img,
picture,
video,
canvas{
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}
/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
h1,
h2,
h3 {
  line-height: 1.1;
}
/* general styling */
body {
  font-family: var(--product-ff-base);
  font-weight: var(--product-fw-regular);
  font-size: 0.875rem;

  color: var(--clr-body-color);
  background-color: var(--clr-body-bg);

  min-height: 100svh;
  line-height: 1.7;
  overflow-x: hidden;

  padding-bottom: 2rem;
}

a{
  text-decoration: none;
  transition: 250ms ease-in-out;
  transition-property: color, background-color;
}

li{
  list-style-type: none;
}
