/* === Base reset === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === Remove default link styles === */
a {
  text-decoration: none;
  color: inherit;
}

/* === Remove list styles === */
ul,
ol {
  list-style: none;
  padding-left: 0;
}

/* === Remove default heading spacing === */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* === Reset images and media === */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Remove default form styles === */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

/* === Set a default body style === */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
