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

/* Remove default list styles */
ul, ol {
  list-style: none;
}

/* Reset anchor styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Normalize body */
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Images and media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* Form element reset */
input, button, textarea, select {
  font: inherit;
}

/* Remove heading default sizes (we'll set them explicitly) */
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
