body {
	--lightGray: #d8d8d8;
	--barelyReadableGray: #ababab;
	--darkGray: #7d7d7d;
	
	--white: #fdfdfd;
	--black: #333;
	
	--linkBlue: #0066e4;
	--linkVisitedBlue: #00479f;
	
	
	--colorBarRounding: .2rem;
	
	--paragraphMargin: 10px;
	
	--smallScreen: 900px;
	
	--bodyPadding: 16px;
	--containerWidth: 800px;
	--containerPadding: 16px;
}

.centered-container {
	max-width: var(--containerWidth);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--containerPadding);
	padding-right: var(--containerPadding);
}
@media (max-width: 400px) {
	.centered-container {
		padding-left: calc(var(--containerPadding) / 2);
		padding-right: calc(var(--containerPadding) / 2);
	}
}
@media (max-width: 350px) {
	.centered-container {
		padding-left: 0;
		padding-right: 0;
	}
}

.intro {
	font-family: 'Lato', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	padding-bottom: .7em;
	text-align: center;
	font-size: 1.3em;
}

.unselectable, [data-selectable=false] {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

body {
	font-family: 'Lato', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	background-color: var(--white);
	color: var(--black);
	padding: var(--bodyPadding);
	margin: 0;
	font-weight: 300;
}

p {
	line-height: 1.5rem;
	margin: var(--paragraphMargin) 0;
}
h4, h5, h6 {
	font-family: 'Lato', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;;
	line-height: 100%;
	font-weight: 700;
}

h1, h2, h3 {
	font-family: 'Stix Two Text', 'Times New Roman', Times, serif;
	font-weight: 400;
}
h1 { 
	font-size: 35px;	
	margin-top: 24px;
	margin-bottom: 24px; 
}
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; font-weight: 700; }
h5 { font-size: 14px; font-weight: 700; }
h6 { font-size: 12px; font-weight: 700; }

small {
	font-size: 13px;
}

@media (max-width: 900px) {
	h1 {
		font-size: 30px;
	}
	h2 {
		font-size: 24px;
	}
	h3 {
		font-size: 20px;
	}
}

@media (max-width: 500px) {
	body {
		padding: 8px;
	}

	h1 {
		font-size: 20px;
	}
	h2 {
		font-size: 18px;
	}
	h3 {
		font-size: 17px;
	}
	h4 {
		font-size: 16px;
	}
}

a:link {
	color: var(--linkBlue);
}
a:visited {
	color: var(--linkVisitedBlue);
}
a.everblue:visited {
	color: var(--linkBlue);
}

.sticky {
	position: sticky;
	top: 0;
}
