/* --------------------------------------------------Communs à chaque page--------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

/* Supprime les marges du corps de la page */
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  width: 100%;
}

/* Supprime les marges du header */
header {
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: #000000;
}
