/* CSS reset: https://meyerweb.com/eric/tools/css/reset/ */
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,
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Layout and typography */
body {
    font-family: 'Georgia', serif;
    font-size: 16px;
    line-height: 20px;
    color: #252519;
}
em {
    font-style: italic;
}
a, a:visited {
    color: #261a3b;
}
h2 {
    font-size: 32px;
    line-height: 40px;
    margin-top: 40px;
}
h2 a {
    text-decoration: none;
}
h3{
    font-size: 26px;
    line-height: 35px;
    margin-top: 15px;
}
div.example {
    width: 960px;
    min-width: 960px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 120px;
}
section.example {
    margin-top: 15px;
    margin-bottom: 20px;
}
p.next {
    margin-bottom: 20px;
}
p.footer {
    color: grey;
    font-size: 75%;
}
p.footer a, p.footer a:visited {
    color: grey;
}
div#intro {
    width: 420px;
    min-width: 420px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 120px;
}
div#intro p {
    padding-top: 20px;
}
div#intro ul {
    padding-top: 20px;
}

.docs {
    min-height: 5px;
    vertical-align: top;
    text-align: left;
}
.docs p {
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 15px;
}
.code {
    vertical-align: top;
}

img.copy, img.run {
  height: 16px;
  width: 16px;
  float: right
}
img.copy, img.run {
  cursor: pointer;
}
img.copy {
    margin-right: 4px;
}


pre[class*="language-"] {
    padding: 0;
    padding-left: .5em;
    margin: 0;
    overflow: auto;
    border-radius: 0;
}

section.example{
    display: grid;
    grid-template-columns: [row1-start] 40% [row1-end row2-start] 60% [row2-end]
}
.grid-left{
    grid-column: 1
}
.grid-right{
    grid-column: 2
}