:root {
  --creme: #F8FCF9;
  --sable: #EDF6F0;
  --menthe: #D6EFDF;
  --foret: #0A5741;
  --pin: #0E7A57;
  --jade: #16A47A;
  --citron: #5FC98A;
  --encre: #10231B;
  --sauge: #4F6B5C;
  --or: #FFC947;
  --police-base: Arial, Helvetica, sans-serif;
  --police-mono: ui-monospace, Menlo, Monaco, monospace;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  margin: 0;
  overflow-x: clip;
  background-color: var(--creme);
  background-image:
    radial-gradient(circle at 15% 0%, rgba(214, 239, 223, .6), transparent 45%),
    radial-gradient(circle at 85% 12%, rgba(95, 201, 138, .12), transparent 40%);
  background-attachment: fixed;
  color: var(--encre);
  font-family: var(--police-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.sprite {
  display: none;
}

::selection {
  background: var(--jade);
  color: #fff;
}
