:root {
  --neutral: #ffffff;
  --sous-color: #fff479;
  --highlight: rgb(255 206 68);
  --highlight-invert: #b50c36;
  --highlight-dark: rgb(50, 20, 20);
  --paper-color: rgb(248, 218, 126);
  --quote-color: #e2a038;
  --text-color: rgb(26, 26, 26);
  --nav-color: var(--sous-color);
  --nav-text-color: var(--sous-color);
  --leather: rgb(87 41 40);
  --burgundy: #703f3e;
  --links: #ff3c3c;
}

body {
  background: linear-gradient(
    180deg,
    var(--paper-color) 0%,
    var(--leather) 100%
  );
  color: rgb(26, 26, 26);
}

.color nav {
  background: var(--burgundy);
  color: rgb(255, 255, 255);
  box-shadow: none;
}

.mot_de_la_redaction-color a {
  color: var(--links);
}

.side-hover:hover {
  color: var(--highlight-invert) !important;
}