/*
 * D11 - Reset CSS
 *
 * Normalisation minimale.
 * Aucun style visuel spécifique à une page ne doit être placé ici.
 */

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

html {
  margin: 0;
  padding: 0;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

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

button {
  border: 0;
}

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

audio {
  max-width: 100%;
}

ul,
ol {
  margin-top: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}
