 /* ===========================
   RESET CSS MODERNE
   =========================== */

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

/* Supprime les marges par défaut */
* {
  margin: 0;
  padding: 0;
}

/* Améliore le rendu du texte */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Hauteur par défaut */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Supprime les styles par défaut des listes */
ul,
ol {
  list-style: none;
}

/* Supprime styles par défaut des liens */
a {
  text-decoration: none;
  color: inherit;
}

/* Images responsive par défaut */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Héritage des polices pour les formulaires */
input,
button,
textarea,
select {
  font: inherit;
}

/* Supprime bordures boutons */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Table plus propre */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Évite débordements texte */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}