/* reset.css — remise à zéro minimale, partagée par toutes les pages */

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

body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

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

a { color: inherit; text-decoration: none; }

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

/* Le contenu occupe toute la hauteur : le pied de page reste en bas
   même sur une page courte (404, mentions légales). */
html, body { height: 100%; }
