/* =========================
   Base – Lardichon
   ========================= */

/* Reset moderne */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

/* Base body */
body {
  font-family: var(--font-body);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.6;
  font-weight: var(--font-weight-body);
  -webkit-font-smoothing: antialiased;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: var(--font-weight-ui);
  margin: 0;
}

/* Liens */
a {
  color: inherit;
  text-decoration: none;
}

.custom-logo,
.custom-logo svg {
  width: 100%;
}
