/*
  Um CSS Reset simples para garantir consistência entre navegadores.
  Inspirado em "A Modern CSS Reset" por Andy Bell.
*/

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}