body {
  margin: 0;
  background: #141b25;
  color: white;
}

main {
  display: flex;
  flex-wrap: wrap;
}

h1, h2, h3, h4 {
  background-color: #141b25;
  padding: 10px;
}

h1 {
  margin: 10px;
  width: 100vw;
}
h1 a {
  color: white;
}

div {
  background-color: #2a2e38;
  padding: 30px;
  margin: 10px;
}

li {
  padding: 10px 0;
}

code {
  display: block;
  font-size: 1.25em;
  background: #141b25;
  padding: 0 10px;
  line-height: 2;
  position: relative;
}
code::before {
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  opacity: 0.3;
  font-weight: bold;
  color: white;
  text-align: right;
  font-size: 0.9em;
}
code.html::before {
  content: "HTML";
}
code.js::before {
  content: "JS";
}
code.console::before {
  content: "console";
}

.border {
  border: solid 1px;
  padding: 10px;
}

a {
  color: white;
}/*# sourceMappingURL=common.css.map */