/* style.css */

* {
  box-sizing: border-box;
}

html {
  background: #252932;
}

body {
  margin: 0;
  padding: 8px;
  background: #252932;
  color: #f5f0ea;

  font-family: Menlo, Monaco, "SF Mono", monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.35px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
pre,
code {
  font-family: inherit;
  font-size: inherit;
  font-weight: normal;
  letter-spacing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 24px;
}

p {
  margin: 0 0 24px;
}



/* Unvisited links */
a:link {
  color: #da585b;
}

/* Previously visited links */
a:visited {
  color: #dbba42;
}

/* Keep link colour clear while hovering or keyboard-selecting it */
a:hover,
a:focus {
  color: #da585b;
}

nav {
  margin-bottom: 28px;
}

nav a {
  margin-right: 10px;
}

ul,
ol {
  margin: 0 0 28px;
  padding-left: 2em;
}

li {
  margin-bottom: 0;
}

pre,
code {
  font-family: "Courier New", Courier, monospace;
  font-size: 1em;
}

pre {
  margin: 0 0 28px;
  white-space: pre-wrap;
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  border: 0;
  border-top: 1px solid #000000;
  margin: 28px 0;
}

button,
input,
textarea,
select {
  font: inherit;
  color: #000000;
  background: #ffffff;
}

button {
  border: 1px solid #000000;
  padding: 2px 8px;
  cursor: pointer;
}