* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #1e1e1e;
  font-family: "Fira Code", monospace;
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: #d4d4d4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.inner {
  min-height: 100vh;
  padding: 20px;
  max-width: 600px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  flex-direction: column;
}

.code {
  color: #d4d4d4;
}

.comment {
  color: #6a9955;
  margin-bottom: 10px;
}

.title {
  color: #4fc1ff;
  margin-bottom: 15px;
}

.desc {
  color: #9cdcfe;
  margin-bottom: 30px;
}

.section:last-child {
  margin: 0;
}
