/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}







/* Typeface */
@font-face {
  src: url("/assets/ttf/SourceSansPro-Regular.ttf");
  font-family: SourceSansPro;
  font-weight: 500;
}
@font-face {
  src: url("/assets/ttf/SourceSansPro-Bold.ttf");
  font-family: SourceSansPro;
  font-weight: 700;
}






/* Global */
html {
  font-family: SourceSansPro;
}
body {
  line-height: 1.5;
  font-size: 16px;
}
a {
  color: #0600a6;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}





/* Section & content wrapper */
content {
  display: block;
  padding: 10px;
}
content img {
  display: block;
  margin: 0 auto;
}
.section {
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}





/* Header & Nav */
header {
  border-bottom: 1px dotted #888888;
  background: #e8e8e8;
  padding: 0 10px;
}
header .section {
  display: flex;
}
@media screen and (max-width: 500px) {
  header .section {
    flex-direction: column-reverse;
  }
}
header .logo {
  display: flex;
  align-items: center;
}
header .logo-left img {
  max-width: 100px;
}
header .logo p {
  color: black;
}
header .logo:hover {
  text-decoration: none;
}

header .logo:hover h1 {
  text-decoration: underline;
}
nav {
  text-align: right;
  display: flex;
  justify-content: right;
  gap: 10px;
  flex-wrap: wrap;
  align-content: flex-start;
}
nav a {
  text-decoration: none;
  border: 1px solid #888888;
  display: inline-block;
  padding: 5px;
  font-size: 18px;
}
nav a:hover {
  background: #888888;
  color: white;
}





/* Typography */
strong { font-weight: bold; }
h1 {
  font-size: 40px;
}
h2 {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
}
h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}
p {
  margin-bottom: 10px;
}







/* Code blocks */
code {
  border: 1px dotted #888888;
  background: #e8e8e8;
  padding: 0 3px;
}
pre {
  border: 1px dotted #888888;
  background: #e8e8e8;
  margin: 20px 0;
  padding: 10px;
  display: block;
  white-space: pre;
  overflow-y: scroll;
}
pre code {
  background: none;
  border: none;
  padding: 0;
}







/* Lists */
ul, ol {
  padding: 0 20px;
  margin-bottom: 10px;
}
ul ul, ol ol {
  padding: 0 20px;
  margin-bottom: 10px;
}
ul {
  list-style: disc;
  list-style-position: outside;
}
ol {
  list-style: number;
  list-style-position: outside;
}





/* Tables */
table {
  border-left: 1px solid #e8e8e8;
  margin-bottom: 40px;
}
td, thead {
  padding: 5px;
  border-top: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
th {
  padding: 10px;
  text-align: left;
}





/* Horizontal Rule */
hr {
  margin: 20px 0;
  display: block;
  border: none;
  border-top: 1px solid #e8e8e8;
  height: 0;
}






/* TOC */
.toc {
  border: 1px solid #e8e8e8;
  padding: 20px;
}
.flex-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0;
}
.flex-list li {
  padding: 4px;
}




/* Homepage */
.large {
  font-size: 30px;
  text-align: center;
}
.buttons {
  text-align: center;
}
.button {
  border: 1px solid #e8e8e8;
  display: inline-block;
  padding: 10px;
  margin: 0 20px;
}

/* Video Demos */
.demo-desktop {
  width: 100%;
  max-width: 656px;
}

.demo-mobile {
  width: 100%;
  max-width: 300px;
}

.center-border {
  margin: 0 auto;
  display: block;
  border: 1px solid #000000;
}

/* Footer */

footer {
  border-top: 1px solid #e8e8e8;
  margin-top: 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
}


/* Videos */
#odysee-iframe {
  max-width: 560px;
  width: 100%;
}
