/* Variables ---------------------------- */

:root {
    --lightest: #F9F5EE;
    --light: #F4E6E6;
	--accent: #CCE2EF;
	--bright: #FABCD6;
    --dark: #AE2C44;
    --darkest: #372C64;

    --text-color: var(--darkest);
    --bg-color: var(--lightest);
	--accent-color: var(--dark);
    --button-bg-color: var(--darkest);
    --button-text-color: var(--lightest);
	--button-outline-color: var(--dark);

    --body-font-family: source-sans-pro, sans-serif;
    --body-font-weight: 400;
    --body-font-weight-bold: 700;
    --body-font-style: normal;
    --heading-font-family: new-spirit, serif;
    --heading-font-weight: 300;
    --heading-font-style: normal;

    --line: 1.5px;

    --container: 90rem;
	--container-m: 82rem;
	--container-s: 60rem;
	--container-xs: 52rem;
	--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: 0.5rem;
	--rounded-l: 1.4rem;

	--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-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 1.6rem;
	--text-4xl: 1.7rem;
	--text-5xl: 2rem;
	--text-6xl: 2.2rem;
}

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

@media screen and (min-width: 990px) {
	:root {
		--text-xs: 0.75rem;
		--text-sm: 0.875rem;
		--text-base: 1rem;
		--text-lg: 1.125rem;
		--text-xl: 1.25rem;
		--text-2xl: 1.5rem;
		--text-3xl: 1.75rem;
		--text-4xl: 2.125rem;
		--text-5xl: 2.75rem;
		--text-6xl: 3.5rem;
	}
}