/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #f8f9fb;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-muted: #555555;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-lg: 0 40px 80px rgba(0, 0, 0, 0.08);

  --margin-top-title: 20px;
  --margin-bottom-title: 60px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background: var(--color-bg);
  color: var(--color-black);
  line-height: 1.6;
}

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

/* LAYOUT */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TYPO */
.h1 {
  font-size: 65px;
  font-weight: 800;
  margin-block-start: 1em;
}

.sub-title {
  font-size: 24px;
  font-weight: 400;
}

.h2 {
  font-size: 26px;
  font-weight: 800;
  margin-block-start: 1em;
}

.h3 {
  font-size: 20px;
  font-weight: 800;
  margin-block-start: 1em;
}

.text {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.8;
}

/* Titre de section lu par les lecteurs d'écran et les moteurs, invisible à l'écran */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

ul {
  margin-block-start: 1em;
  padding-inline-start: 40px;
  margin-block-end: 1em;
}
