/* 1. Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Suppression des marges par défaut */
* {
  margin: 0;
  padding: 0;
}
html{
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}
/* 3. Hauteur full page */
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

/* 4. Typographie de base */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* 5. Médias responsive */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 6. Formulaires héritent la typo */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Boutons propres */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* 8. Liens sans style par défaut */
a {
  text-decoration: none;
  color: inherit;
}

/* 9. Listes sans puces */
ul,
ol {
  list-style: none;
}

/* 10. Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 11. Éviter les overflows texte */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  font-family: 'Oswald', sans-serif;
}
p{
  font-family: 'Roboto', sans-serif;
}

/* 12. Root stacking context */
#root,
#__next {
  isolation: isolate;
}
