:root {
    --bg-color: #FDFBEE;
    --fg-color: #015551;
    --link-color: #FE4F2D;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}

/* My Styles */
body {
    font-family: 'Open Sans';
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.2;
    background-color: var(--bg-color);
    color: var(--fg-color)
}

a {
    color: var(--link-color)
}

h2>a {
    color: var(--fg-color)
}

p,
pre,
ul,
ol {
    margin-bottom: 0.75rem;
}

ul {
    list-style-type: disc !important;
    list-style-position: inside;
}

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
}

ol li::before {
    content: counter(item) '.';
    padding-right: 0.5rem;
}

p {
    text-align: justify;
}

nav {
    width: fit-content;
    margin: 0 auto;
}

hr {
    margin: 0;
    margin-bottom: 0.5rem;
    border-color: var(--fg-color);
}

nav li,
nav ul {
    display: inline-block;
}

nav ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

.body-container {
    max-width: 900px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

pre {
    padding: 0.5rem;
    border: 1px var(--fg-color) dashed;
    overflow-x: auto;
}

code {
    font-family: 'Roboto Mono';
}

.center-text {
    text-align: center;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

.contents img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.contents hr {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-style: dashed;
}

.hideme {
    display: none !important;
}

.kg-width-full img,
.kg-width-wide img {}