:root {
	--white: #ffffff;
	--background-color: #fff8f1;

	--pink-200: #fad1e8;
	--pink-700: #bf125d;
	--pink-800: #99154b;

	--blue-100: #e1effe;
	--blue-500: #3f83f8;
	--blue-700: #1a56db;
	--blue-800: #1e429f;

	--grey-50: #f9fafb;
	--grey-100: #f3f4f6;
	--grey-200: #e5e7eb;
	--grey-400: #9ca3af;
	--grey-500: #6b7280;
	--grey-600: #4b5563;
	--grey-700: #374151;
	--grey-800: #1f2a37;
	--grey-900: #111928;

	--teal: #0694a2;

	--accent: var(--teal);

	/* sizes */
	--xxs: 4px;
	--xs: 8px;
	--s: 12px;
	--m: 16px;
	--l: 24px;
	--xl: 32px;
	--xxl: 40px;

	--max-content-width: 1600px;
}

/* desktop first */
/* breakpoint for tablet: 1280px (MacBook Air) - mobile fonts applyes*/
/* breakpoint for mobile: 834px (iPad Pro 11) */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: var(--background-color);
	color: var(--grey-700);
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: 400;
	min-height: 100vh;
}

a {
	text-decoration: none;
	color: var(--blue-700);
	cursor: pointer;
}
a:hover {
	color: var(--blue-800);
}

button {
	cursor: pointer;
}

/* heading */
h1,
h2,
h3,
h4,
h5 {
	color: var(--grey-900);
}
h1 {
	font-size: 3.75rem;
	font-style: normal;
	font-weight: 700;
	line-height: 140%; /* 5.25rem */
}
h2 {
	font-size: 2.625rem;
	font-style: normal;
	font-weight: 700;
	line-height: 140%; /* 3.675rem */
}
h3 {
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 700;
	line-height: 140%; /* 3.15rem */
}
h4,
.h4 {
	font-size: 1.875rem;
	font-style: normal;
	font-weight: 700;
	line-height: 140%; /* 2.625rem */
}
h5 {
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 2.1rem */
}
h5 b {
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 140%; /* 2.1rem */
	letter-spacing: 0.03rem;
}
@media screen and (max-width: 1280px) {
	h1 {
		font-size: 2.25rem;
	}
	h2 {
		font-size: 1.875rem;
	}
	h3 {
		font-size: 1.5rem;
	}
	h4,
	.h4 {
		font-size: 1.25rem;
	}
	h5,
	h5 b {
		font-size: 1.125rem;
	}
}

/* regular text */
b {
	font-size: 1rem;
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 1.2rem */
}
.text--medium {
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 1.2rem */
}
.subtext {
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: 120%; /* 1.05rem */
}
.subtext b {
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 1.05rem */
}
.subtext--medium {
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 1.05rem */
}
small {
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 400;
	line-height: 115%; /* 0.8625rem */
}
small b {
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 700;
	line-height: 115%; /* 0.8625rem */
}

.content {
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: calc(var(--max-content-width) + var(--xl) + var(--xl));
	padding-left: var(--xl);
	padding-right: var(--xl);
	margin: 0 auto;
}
@media screen and (width <= 1280px) {
	.content {
		padding-left: var(--l);
		padding-right: var(--l);
	}
}
@media screen and (width <= 834px) {
	.content {
		padding-left: var(--s);
		padding-right: var(--s);
	}
}
