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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.55;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--bleu-lien);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h2 {
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--vert-terrain);
  margin: 2rem 0 0.75rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bleu-lien);
  margin: 1.5rem 0 0.5rem;
}

main {
  min-height: 50vh;
}

.stat-num,
.bar-value {
  font-variant-numeric: tabular-nums;
}
