*
{
	font-family: 'Roboto';
	font-weight: 300;
	color:rgb(220,220,220);

	line-height: 1.5;
}

body
{
	background: rgb(13,15,16);

	position: relative;
	text-align: left;
}

section
{
	padding: 24px 0 64px 0;
	position: relative;
	border-top: 1px solid rgb(56,56,56);
}

section:first-of-type
{
	border-top: none;
}

h1
{
	font-size: 40px;
	margin: 12px 0;
	-font-style: italic;
	font-weight: 300;
}

h2
{
	font-size: 32px;
	margin: 40px 0;
	font-weight: 700;
	-font-style: italic;
	text-align: center;
}

p
{
	font-size: 20px;
	margin-bottom: 18px;
	font-weight: 300;
}

p > a 
{ 
	font-weight: 400;
	color:rgb(232,232,232);
}

code
{
	margin: 0;
	padding: 0;
	font-family: Consolas, "Courier New", monospace;
	font-size: 20px;
	white-space: pre;
}

code span
{
	margin: inherit;
	padding: inherit;
	font: inherit;
	line-height: inherit;
	white-space: inherit;
}

code .comment
{
	color: rgb(87,166,74);
}

code .keyword
{
	color: rgb(86,156,214);
}

code .namespace,
code .function,
code .type
{
	color: rgb(78,201,176);
}

code .string
{
	color: rgb(255,214,143);
}

code .number,
code .enum
{
	color: rgb(184,215,163);
}

.Indent
{
	margin: 0 auto;
	padding: 0 32px;
	width: 100%;
	max-width: 1256px;
}

.Columns
{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 32px;
}

.Columns > div
{
	flex: 1 1 0;
	min-width: 280px;
}

section h2
{
	margin-bottom: 72px;
}

.subHeading
{
	margin-top: -40px;
	margin-bottom: 64px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.subHeading p
{
	margin-bottom: 8px;

	font-style: normal;
	font-weight: 300;
	font-size: 18px;
	letter-spacing: -0.01em;
	color: rgb(160,160,160);
	margin-bottom: 4px;
}

h3
{
	font-size: 20px;
	margin: 12px 0 16px 0;
	font-weight: 700;
}

.viewportFade
{
	position: fixed;
	left: 0;
	right: 0;
	height: 48px;
	pointer-events: none;
	z-index: 999;
	will-change: opacity;
}

.viewportFade-top
{
	top: 0;
	opacity: 0;
	background: linear-gradient(to bottom, rgba(13,16,15,1) 0px, rgba(13,16,15,0) 48px);
}

.viewportFade-bottom
{
	bottom: 0;
	opacity: 1;
	background: linear-gradient(to top, rgba(13,16,15,1) 0px, rgba(13,16,15,0) 48px);
}

.panelBox
{
	border: 1px solid rgb(40,48,52);
	border-radius: 18px;
	background: rgb(20,24,23);
	padding: 14px 18px;
	min-height: 60px;
	transition: border-color 120ms ease, background-color 120ms ease, box-shadow 120ms ease, color 120ms ease;
}

.panelBox-selected
{
	border: 2px solid rgb(112,220,255);
	background: rgba(0,0,0,0.1);
	color: rgb(220,220,220);
	font-weight: 700;
}

.panelBox-selected:hover
{
	border-color: rgb(112,220,255);
	background: rgba(0,0,0,0.1);
	color: rgb(220,220,220);
}

.panelBox-selected h3
{
	color: rgb(112,255,220);
}

.CopyButton
{
	color: rgb(160,160,160);
	cursor: pointer;
	font-size: 16px;
}

.CopyButton:hover
{
	color: rgb(200,200,200);
}

@media (max-width: 1024px)
{
	.subHeading
	{
		text-align: left;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}
	
}
