/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
} /* Reset margin */
body,
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
} /* Body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
} /* Images */
img,
picture {
  max-width: 100%;
  display: block;
} /* Forms */
input,
button,
textarea,
select {
  font: inherit;
} /* Remove list styles */
ul,
ol {
  list-style: none;
  padding: 0;
} /* Links */
a {
  text-decoration: none;
  color: inherit;
}