:root {  
  --white: #FAF4EF;
  --black: #212121;
  --bright: #B9FC6C;
  --accent: #FF9A52;
  --accent-rbga: 255, 154, 82, 0.05;
  --highlight: #FF5252;
  --highlight-rgba: 255, 82, 82, 0.05;
  --light: #EFE4D2;
  --dark: #311F17;
  --dark-rgba: 49, 25, 15, 0.16;
  
  --text-color: var(--black);
  --bg-color: var(--white);
  --button-bg-color: var(--accent);
  --button-text-color: var(--black);
  --accent-color: var(--highlight);
  --accent-rgba: var(--highlight-rgba);
  
  --main-font-family: "Andika", sans-serif;
  --main-font-weight: 400;
  --main-font-style: normal;

  --heading-font-family: "Balsamiq-Sans", sans-serif;
  --heading-font-weight: 700;
  --heading-font-style: normal;

  --weight-bold: 700;
  
  --line: 2px;
  
  --container: 90rem;
  --container-s: 45rem;
  --container-padding: var(--spacing-4);
  
  --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: 1.5rem;
  --rounded-xl: 3.125rem;
  
  --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-2xs: 0.75rem;
  --text-xs: 0.875rem;
	--text-s: 1rem;
  --text-base: clamp(1rem, 0.956rem + 0.1878vw, 1.125rem);
  --text-md: clamp(1.0625rem, 0.9525rem + 0.4695vw, 1.375rem);
	--text-lg: clamp(1.0625rem, 0.7875rem + 1.1735vw, 1.35rem);
	--text-xl: clamp(1.2rem, 0.913rem + 1.2245vw, 1.5rem);
	--text-2xl: clamp(2.125rem, 1.643rem + 2.0566vw, 2.625rem);
	--text-3xl: clamp(2.6rem, 1.455rem + 4.8855vw, 3.8rem);
	--text-4xl: clamp(3rem, 1.5651rem + 6.1224vw, 4.5rem);
	--text-5xl: clamp(3.375rem, 1.8205rem + 6.6327vw, 5rem);
	--text-6xl: 4rem;

  --logo-height: 1.6rem;
}

@media screen and (min-width: 768px) {
  :root {
    --container-padding: var(--spacing-8);

    --text-lg: clamp(1.35rem, 116.55rem + -240vw, 1.5rem);
    --text-xl: clamp(1.5rem, 1.412rem + 0.3756vw, 1.75rem);
    --text-2xl: clamp(2.625rem, 1.6964rem + 1.9345vw, 3.4375rem);
    --text-3xl: clamp(3.8rem, 2rem + 3.75vw, 5.375rem);
    --text-4xl: clamp(4.125rem, 1.1964rem + 6.1012vw, 6.6875rem);
    --text-5xl: clamp(5rem, 2.1429rem + 5.9524vw, 7.5rem);
  }
}


/*@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);
}
}*/