* {
  box-sizing: border-box;
}
body {
  background: #1B2225;
  padding: 50px 0;
  color: #999;
  font-family: 'Overpass Mono', monospace;
  font-size: 1em;
  margin: 0;
}
:before,
:after {
  font-weight: 100;
}
a {
  color: #4cadc9;
  text-decoration: none;
}
a:hover {
  color: #4cadc9;
  border-bottom: 1px dotted #4cadc9;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #CDFF8E;
  font-family: inherit !important;
}
.header {
  width: 100%;
  max-width: 800px;
  height: 40px;
  margin: 0 auto;
}
.header .title {
  float: left;
  line-height: 40px;
}
.header ul {
  float: right;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  line-height: 40px;
}
.header ul:before {
  content: '[';
  color: #eee;
}
.header ul:after {
  content: ']';
  color: #eee;
}
.header ul li {
  display: inline-block;
}
.header ul li.separator {
  color: #eee;
}
.header ul li.separator:last-child {
  display: none;
}
@media all and (max-width: 800px) {
  .header {
    padding: 0 15px;
  }
}
@media all and (max-width: 430px) {
  .header .title {
    display: none;
  }
  .header ul {
    float: none;
    text-align: center;
  }
}
.content {
  width: 100%;
  max-width: 830px;
  margin: 50px auto;
}
.content img {
  max-width: 100%;
}
.footer {
  text-align: center;
  font-size: 14px;
}
.footer small {
  display: block;
  text-shadow: 1px 1px 1px #111;
}
