:root {
  --text: #0c180c;
  --background: #fcfefb;
  --background-rgb: #fcfefb;
  --primary: #69b063;
  --primary-rgb: #69b063;
  --secondary: #a4d0c1;
  --secondary-rgb: #a4d0c1;
  --accent: #7bbcb1;
  --accent-rgb: #7bbcb1;

  /* sizes */
  --size-xxs: 0.5rem;
  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-base: 1rem;
  --size-lg: 1.125rem;
  --size-xl: 1.25rem;
  --size-xxl: 1.5rem;
  --size-3xl: 1.875rem;
  --size-4xl: 2.25rem;
  --size-5xl: 3rem;
  --size-6xl: 3.75rem;
  --size-7xl: 4.5rem;
  --size-8xl: 6rem;
  --size-9xl: 8rem;
  --size-10xl: 10rem;
}

.dark-mode {
  --text: #e7f3e7;
  --text-rgb: #e7f3e7;
  --background: #020401;
  --background-rgb: #020401;
  --primary: #559c4f;
  --primary-rgb: #559c4f;
  --secondary: #2f5b4c;
  --secondary-rgb: #2f5b4c;
  --accent: #438479;
  --accent-rgb: #438479;
}

* {
  margin: 0;
  line-height: calc(1m + 0.5rem);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  user-select: none;
}

button {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

h1 {
  font-weight: 800;
  font-size: var(--size-4xl);
}

h2 {
  font-weight: 700;
  font-size: var(--size-3xl);
}