/* ========== reboot.css ========== */

/* Base du document */
html {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

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

/* Supprime les marges par défaut */
body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #212529;
  background-color: #fff;
}

/* Titres et texte */
h1, h2, h3, h4, h5, h6, p {
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}

/* Liens */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Images */
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border-style: none;
}

/* Listes */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Boutons et formulaires */
button, input, select, textarea {
  font: inherit;
  margin: 0;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}


