/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* prevent font-size inflation on mobile browsers */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* remove default margin */
* {
  margin: 0px;
}

/* accessible line height */
body {
  line-height: 1.5;
}

/* shorter line heights on headings and interactive elements */
h1, h2, h3, h4, h5, h6, 
button, input, label {
  line-height: 1.1;
}

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

/* remove built-in form typography styles */
input, button, textarea, select {
  font: inherit;
}

/* prevent text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* collapse table borders */
table {
  border-collapse: collapse;
}