.header {
max-height: 40px;
display: flex;
justify-content: center;
align-items: center;
}
.header img {
max-height: 40px;
}
:root {
--background-color: #fdfdfd;
--text-color: #1a1a1a;
--link-color: #1a1a1a;
--blockquote-border: #e6e6e6;
--blockquote-text: #606060;
}
body {
background-color: var(--background-color);
color: var(--text-color);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
font-size: 1em;
line-height: 1.3;
margin: 0 auto;
padding: 50px;
max-width: 36em;
}
h1, h2, h3, h4, h5, h6 {
color: var(--text-color);
font-weight: normal;
margin-top: 1.5em;
margin-bottom: 0.5em;
}
a {
color: var(--link-color);
text-decoration: underline;
}
a:hover {
opacity: 0.7;
}
ul, ol {
padding-left: 2em;
margin: 1em 0;
}
li {}
img, video {
max-width: 100%;
height: auto;
display: block;
margin: 1.5em 0;
}
code {
font-family: 'Courier New', monospace;
background-color: #f5f5f5;
padding: 0.2em 0.4em;
border-radius: 3px;
font-size: 0.9em;
}
blockquote {
margin: 1.5em 0;
padding-left: 1em;
border-left: 2px solid var(--blockquote-border);
color: var(--blockquote-text);
font-style: italic;
}
hr {
height: 1px;
background-color: var(--blockquote-border);
border: none;
}
section[role="doc-endnotes"] {
margin-top: 2em;
padding-top: 1em;
border-top: 1px solid var(--blockquote-border);
}
section[role="doc-endnotes"] ol li a[role="doc-backlink"] {
padding-right: 0.2em;
}
@media (max-width: 600px) {
body {
padding: 12px;
font-size: 0.9em;
}
}