/* Set box-sizing for all elements. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin. */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list defaults. */
ul[class],
ol[class] {
  padding: 0;
  list-style: none;
}

/* Set body defaults. */
html, body {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

/* Set link defaults. */
a {
  text-decoration-skip-ink: auto;
}
a[class] {
  text-decoration: none;
}

/* Set image defaults. */
img {
  display: block;
  max-width: 100%;
}

button, input[type=submit], input[type=reset] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

/*# sourceMappingURL=reset.css.map */
