html {
	line-height: 1.5;
	font-family: Georgia, serif;
	font-size: 20px;
	color: #1a1a1a;
	background-color: #fdfdfd;
}
body {
	margin: 0 auto;
	max-width: 36em;
	padding-left: 50px;
	padding-right: 50px;
	/* padding-top: 5px; */
	padding-bottom: 50px;
	hyphens: auto;
	overflow-wrap: break-word;
	text-rendering: optimizeLegibility;
	font-kerning: normal;
}
nav {
	line-height: 1;
}

/* Checkbox to look similar to sliders */
input[type='checkbox'] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 1.5em;
	height: 1.5em;
	border: 0.1em solid #1a1a1a;
	border-radius: 0.3em;
	background-color: #fdfdfd;
	cursor: pointer;
	outline: none;
	transition: all 0.2s ease-in-out;
}

.row {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
	height: auto;
}

/* Checkbox checked */
input[type='checkbox']:checked {
	background-color: #1a1a1a;
}

/* Checkbox hover */
input[type='checkbox']:hover {
	background-color: #e6e6e6;
}

/* Checkbox checked hover */
input[type='checkbox']:checked:hover {
	background-color: #1a1a1a;
}

/* Checkbox checked after */
/* input[type="checkbox"]:after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  margin: 0.25em;
  background-color: #fdfdfd;
  transition: all 0.2s ease-in-out;
} */

@media print {
	body {
		background-color: transparent;
		color: black;
		font-size: 12pt;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3,
	h4 {
		page-break-after: avoid;
	}
}
p {
	margin: 1em 0;
}
a {
	color: #1a1a1a;
}
a:visited {
	color: #1a1a1a;
}
img {
	max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 1.2em;
}
h5,
h6 {
	font-size: 1em;
	font-style: italic;
}
h6 {
	font-weight: normal;
}
ol,
ul {
	padding-left: 1.7em;
	margin-top: 1em;
}
li > ol,
li > ul {
	margin-top: 0;
}
blockquote {
	margin: 1em 0 1em 1.7em;
	padding-left: 1em;
	border-left: 2px solid #e6e6e6;
	color: #606060;
}
code {
	font-family: Menlo, Monaco, 'Lucida Console', Consolas, monospace;
	font-size: 85%;
	margin: 0;
}
pre {
	margin: 1em 0;
	overflow: auto;
}
pre code {
	padding: 0;
	overflow: visible;
	overflow-wrap: normal;
}
.sourceCode {
	background-color: transparent;
	overflow: visible;
}
hr {
	background-color: #1a1a1a;
	border: none;
	height: 1px;
	margin: 1em 0;
}
table {
	margin: 1em 0;
	border-collapse: collapse;
	width: 100%;
	overflow-x: auto;
	display: block;
	font-variant-numeric: lining-nums tabular-nums;
}
table caption {
	margin-bottom: 0.75em;
}
tbody {
	margin-top: 0.5em;
	border-top: 1px solid #1a1a1a;
	border-bottom: 1px solid #1a1a1a;
}
th {
	border-top: 1px solid #1a1a1a;
	padding: 0.25em 0.5em 0.25em 0.5em;
}
td {
	padding: 0.125em 0.5em 0.25em 0.5em;
}
header {
	margin-bottom: 3em;
	text-align: center;
}
#TOC li {
	list-style: none;
}
#TOC ul {
	padding-left: 1.3em;
}
#TOC > ul {
	padding-left: 0;
}
#TOC a:not(:hover) {
	text-decoration: none;
}
code {
	white-space: pre-wrap;
}
span.smallcaps {
	font-variant: small-caps;
}
div.columns {
	display: flex;
	gap: min(4vw, 1.5em);
}
div.column {
	flex: auto;
	overflow-x: auto;
}
div.hanging-indent {
	margin-left: 1.5em;
	text-indent: -1.5em;
}
ul.task-list {
	list-style: none;
}
ul.task-list li input[type='checkbox'] {
	width: 0.8em;
	margin: 0 0.8em 0.2em -1.6em;
	vertical-align: middle;
}
.range {
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 200px;
}
input[type='range']::-webkit-slider-runnable-track {
	-webkit-appearance: none;
	background: rgba(59, 173, 227, 1);
	background: -moz-linear-gradient(
		45deg,
		rgba(59, 173, 227, 1) 0%,
		rgba(87, 111, 230, 1) 25%,
		rgba(152, 68, 183, 1) 51%,
		rgba(255, 53, 127, 1) 100%
	);
	background: -webkit-gradient(
		left bottom,
		right top,
		color-stop(0%, rgba(59, 173, 227, 1)),
		color-stop(25%, rgba(87, 111, 230, 1)),
		color-stop(51%, rgba(152, 68, 183, 1)),
		color-stop(100%, rgba(255, 53, 127, 1))
	);
	background: -webkit-linear-gradient(
		45deg,
		rgba(59, 173, 227, 1) 0%,
		rgba(87, 111, 230, 1) 25%,
		rgba(152, 68, 183, 1) 51%,
		rgba(255, 53, 127, 1) 100%
	);
	background: -o-linear-gradient(
		45deg,
		rgba(59, 173, 227, 1) 0%,
		rgba(87, 111, 230, 1) 25%,
		rgba(152, 68, 183, 1) 51%,
		rgba(255, 53, 127, 1) 100%
	);
	background: -ms-linear-gradient(
		45deg,
		rgba(59, 173, 227, 1) 0%,
		rgba(87, 111, 230, 1) 25%,
		rgba(152, 68, 183, 1) 51%,
		rgba(255, 53, 127, 1) 100%
	);
	background: linear-gradient(
		45deg,
		rgba(59, 173, 227, 1) 0%,
		rgba(87, 111, 230, 1) 25%,
		rgba(152, 68, 183, 1) 51%,
		rgba(255, 53, 127, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3bade3 ', endColorstr='#ff357f ', GradientType=1 );
	height: 2px;
}
input[type='range']:focus {
	outline: none;
}
input[type='range']::-moz-range-track {
	-moz-appearance: none;
	background: rgba(59, 173, 227, 1);
	background: -moz-linear-gradient(
		45deg,
		rgba(59, 173, 227, 1) 0%,
		rgba(87, 111, 230, 1) 25%,
		rgba(152, 68, 183, 1) 51%,
		rgba(255, 53, 127, 1) 100%
	);
	background: -webkit-gradient(
		left bottom,
		right top,
		color-stop(0%, rgba(59, 173, 227, 1)),
		color-stop(25%, rgba(87, 111, 230, 1)),
		color-stop(51%, rgba(152, 68, 183, 1)),
		color-stop(100%, rgba(255, 53, 127, 1))
	);
	background: -webkit-linear-gradient(
		45deg,
		rgba(59, 173, 227, 1) 0%,
		rgba(87, 111, 230, 1) 25%,
		rgba(152, 68, 183, 1) 51%,
		rgba(255, 53, 127, 1) 100%
	);
	background: -o-linear-gradient(
		45deg,
		rgba(59, 173, 227, 1) 0%,
		rgba(87, 111, 230, 1) 25%,
		rgba(152, 68, 183, 1) 51%,
		rgba(255, 53, 127, 1) 100%
	);
	background: -ms-linear-gradient(
		45deg,
		rgba(59, 173, 227, 1) 0%,
		rgba(87, 111, 230, 1) 25%,
		rgba(152, 68, 183, 1) 51%,
		rgba(255, 53, 127, 1) 100%
	);
	background: linear-gradient(
		45deg,
		rgba(59, 173, 227, 1) 0%,
		rgba(87, 111, 230, 1) 25%,
		rgba(152, 68, 183, 1) 51%,
		rgba(255, 53, 127, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3bade3 ', endColorstr='#ff357f ', GradientType=1 );
	height: 2px;
}
input[type='range']::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: 2px solid;
	border-radius: 50%;
	height: 25px;
	width: 25px;
	max-width: 80px;
	position: relative;
	bottom: 11px;
	background-color: #fff;
	cursor: -webkit-grab;
	-webkit-transition: border 1000ms ease;
	transition: border 1000ms ease;
}
input[type='range']::-moz-range-thumb {
	-moz-appearance: none;
	border: 2px solid;
	border-radius: 50%;
	height: 25px;
	width: 25px;
	max-width: 80px;
	position: relative;
	bottom: 11px;
	background-color: #1d1c25;
	cursor: -moz-grab;
	-moz-transition: border 1000ms ease;
	transition: border 1000ms ease;
}
.range.blue::-webkit-slider-thumb {
	border-color: rgb(59, 173, 227);
}
.range.ltpurple::-webkit-slider-thumb {
	border-color: rgb(87, 111, 230);
}
.range.purple::-webkit-slider-thumb {
	border-color: rgb(152, 68, 183);
}
.range.pink::-webkit-slider-thumb {
	border-color: rgb(255, 53, 127);
}
.range.blue::-moz-range-thumb {
	border-color: rgb(59, 173, 227);
}
.range.ltpurple::-moz-range-thumb {
	border-color: rgb(87, 111, 230);
}

.range.purple::-moz-range-thumb {
	border-color: rgb(152, 68, 183);
}
.range.pink::-moz-range-thumb {
	border-color: rgb(255, 53, 127);
}
input[type='range']::-webkit-slider-thumb:active {
	cursor: -webkit-grabbing;
}
input[type='range']::-moz-range-thumb:active {
	cursor: -moz-grabbing;
}

/* breadcumb styling following the styles so far */
.breadcrumb {
	/* background-color: #1d1c25; */
	border-radius: 0.25rem;
	padding: 0.5rem 1rem;
	margin-bottom: 1rem;
}
ul.breadcrumb li {
	display: inline;
	font-size: 18px;
}
ul.breadcrumb li + li:before {
	padding: 8px;
	color: hsl(270, 7%, 64%);
	content: '/\00a0';
}
ul.breadcrumb li a {
	color: hsl(270, 7%, 64%);
	text-decoration: none;
}
ul.breadcrumb li a:hover {
	color: hsl(270, 7%, 2%);
}

/* dark mode */
@media (prefers-color-scheme: dark) {
	html {
		background-color: #1a1a1a;
		color: #fdfdfd;
	}
	a {
		color: #fdfdfd;
	}
	a:visited {
		color: #fdfdfd;
	}
	blockquote {
		border-left-color: #606060;
		color: #e6e6e6;
	}
	hr {
		background-color: #fdfdfd;
	}
	table caption {
		color: #fdfdfd;
	}
	table th {
		border-top-color: #fdfdfd;
	}
	table td {
		border-bottom-color: #1a1a1a;
	}
	thead {
		border-bottom-color: #fdfdfd;
	}
	tbody {
		border-top-color: #fdfdfd;
		border-bottom-color: #fdfdfd;
	}
	tfoot {
		border-top-color: #fdfdfd;
	}
	code {
		color: #fdfdfd;
	}
	input[type='range']::-webkit-slider-thumb {
		background-color: #1d1c25;
	}

	/* breadcumb styling following the styles so far */
	ul.breadcrumb li + li:before {
		padding: 8px;
		color: hsl(270, 25%, 47%);
		content: '/';
	}
	ul.breadcrumb li a {
		color: hsl(270, 25%, 47%);
	}
	ul.breadcrumb li a:hover {
		color: hsl(270, 25%, 87%);
	}
}
