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

:root {
  /* Couleurs principales */
  --primary-color: #00a5b6;
  --secondary-color: #cde7ea;
  --tertiary-color-one: #00a0b2;
  --background-color: #f8f9fa;
  --text-color: #000000;
  --secondary-text-color: #3c3c4399;
  --disabled-text-color: #3c3c434d;

  /* Typographie */
  --font-family: "Unives Next", sans-serif;
  --font-size: 16px;
  --heading-font-weight: bold;

  /* Espacements */
  --padding-one: 8px;
  --padding-two: 12px;
  --padding-three: 16px;
  --padding-four: 24px;
  --margin: 16px;

  /* Bordures et ombres */
  --border-radius-one: 8px;
  --border-radius-two: 12px;
  --border-radius-three: 16px;
  --btn-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  --box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 4px 6px rgba(0, 0, 0, 0.08);
  --border: 1px solid rgba(60, 60, 67, 0.29);
}
