:root {
  --border: 1px;
  
  --white: #f0ece6;
  --lt-green: #bbd3c1;
  --green: #8aa38f;
  --med-green: #608069;
  --dk-green: #445949;
  
  --text-color: var(--dk-green);
  --bg-color: var(--white);
  --button-bg-color: var(--dk-green);
  --button-text-color: var(--white);
  --accent-color: var(--green);
  
  --main-font-family: "classico-urw", sans-serif;
  --main-font-weight: 400;
  --main-font-weight-bold: 500;
  --main-font-style: normal;
  --heading-font-family: "orpheuspro", serif;
  --heading-font-weight: 400;
  --headinf-font-style: normal;
  
  --line: 1px;
  
  --container: 125rem;
  --container-s: 45rem;
  --container-padding: var(--spacing-8);
  
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  --rounded-xs: 1px;
  --rounded-sm: 0.125rem;
  --rounded: 0.5rem;
  --rounded-xl: 1.5rem;
  
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
  0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
  0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
  0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: rgba(0, 0, 0, 0.025) 0 0 10px, rgba(0, 0, 0, 0.075) 0 5px 40px,
  rgba(0, 0, 0, 0.075) 0 30px 100px;
  --shadow-outline: currentColor 0 0 0 2px;
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  --spacing-0: 0;
  --spacing-px: 1px;
  --spacing-2px: 2px;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing--6: -1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing--12: -3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --spacing-36: 9rem;
  --spacing-42: 10.5rem;
  
  --text-base: 1rem;
  --text-3xs: 0.75rem;
  --text-2xs: 1rem;
  --text-xs: 1.125rem;
  --text-s:  clamp(1.1875rem, 1.0828rem + 0.3941vw, 1.4375rem);
  --text-m: clamp(1.25rem, 1.1453rem + 0.3941vw, 1.5rem);
  --text-ml: 1.75rem;
  --text-l: 2.125rem;
  --text-2xl: clamp(2.25rem, 1.7266rem + 1.9704vw, 3.5rem);
  --text-3xl: clamp(2.625rem, 1.8922rem + 2.7586vw, 4.375rem);
}

/*@media screen and (min-width: 22rem) {
:root {
--container-padding: var(--spacing-6);
}
}
@media screen and (min-width: 30rem) {
:root {
--container-padding: var(--spacing-12);
}
}
@media screen and (min-width: 40rem) {
:root {
--text-h1: var(--text-5xl);
}
}
@media screen and (min-width: 72rem) {
:root {
--container-padding: var(--spacing-24);
}
}*/