html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
}

/* ---------- Base Typography ---------- */

body {
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Media ---------- */

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* ---------- Form Elements ---------- */

input,
button,
textarea,
select {
  font: inherit;
}

/* ---------- Buttons ---------- */

button {
  cursor: pointer;
}

/* ---------- Links ---------- */

a {
  transition: color 0.2s ease-in-out;
}

/* ---------- Typography improvements ---------- */

h1, h2, h3, h4 {
  line-height: 1.2;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
  overflow-wrap: break-word;
}

/* ---------- Lists ---------- */

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}