/* more intuitive box-sizing model */

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* remove default margin */

* {
  margin: 0;
}

/* allow percentage-based heights in the application */

html, body {
  height: 100%;
}

/* line-height, text rendering */

body {
  line-height: 1.429;
  -webkit-font-smoothing: antialiased;
}

/* improve media defaults */

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

/* remove built-in form typography styles */

input, button, textarea, select {
  font: inherit;
}

/* avoid text overflows */

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

