* {
  font: 1rem monospace;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

main {
  max-width: 400px;
  padding: 2rem;
  margin: 4rem 1rem;
  border: solid 1pt #928374;
  background: #282828;
}

section {
  margin-top: 1rem;
}

h1,
h2,
h3 {
  font-weight: bold;
  margin: 2rem 0 1rem 0;
  color: #b8bb26;
}

h1:before {
  content: "# ";
}

h2:before {
  content: "## ";
}

h3:before {
  content: "### ";
}

ul {
  list-style-type: none;
}

ul>li:before {
  content: "- ";
  color: #a89984;
}

body {
  background: #1d2021;
  color: #ebdbb2;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  color: #fe8019;
}

a:visited {
  color: #d65d0e;
}

p {
  margin-bottom: 1rem;
}

footer {
  margin: 1rem;
  color: #928374;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}