
/*
 *  Generic
 */
 :root {
	/* Sans-serif stack: for UI, nav, and general layout */
	--font-sans: 'Roboto', 'Helvetica Neue', 'Arial', 'Segoe UI', 'Noto Sans', 'Open Sans', 'Tahoma', sans-serif;

	/* Serif stack: for headings and display type */
	--font-serif-headings: 'NY Cheltenham', 'Times New Roman', 'Times', 'Baskerville', 'Georgia', serif;

	/* Serif stack: for long-form body content */
	--font-serif-body: 'Georgia', 'Times New Roman', 'Times', 'Droid Serif', 'PT Serif', serif;

	--sticky-header-offset: 0;

	--sk-body-link-color: #e46c2a;
}


body {
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-family: var(--font-serif-body);
}

/* ---------- Prevent iOS scroll-resize jump ---------- */
html,
body {
  height: 100%;
}
