/* RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Mejora renderizado */
html {
  -webkit-text-size-adjust: 100%;
}

/* Evita problemas con imágenes */
img {
  max-width: 100%;
  display: block;
}

/* Links sin estilos raros */
a {
  text-decoration: none;
  color: inherit;
}

/* Listas limpias */
ul, ol {
  list-style: none;
}