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

body {
  font-family: "Courier New", Courier, monospace;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

header {
  margin-bottom: 50px;
}

header h1 {
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 15px;
}

nav a {
  color: #000000;
  text-decoration: none;
  margin-right: 20px;
  font-size: 0.95rem;
}

nav a:hover {
  text-decoration: underline;
}

nav a.active {
  text-decoration: underline;
}

main {
  margin-bottom: 60px;
}

h2 {
  font-size: 1.1rem;
  font-weight: normal;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 8px;
}

p {
  margin-bottom: 20px;
}

.section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #000000;
}

.section:last-child {
  border-bottom: none;
}

.item {
  margin-bottom: 30px;
}

.item .meta {
  font-size: 0.85rem;
  color: #444444;
  margin-bottom: 6px;
}

a {
  color: #000000;
}

footer {
  font-size: 0.85rem;
  border-top: 1px solid #000000;
  padding-top: 20px;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 8px;
}

ul li::before {
  content: "- ";
}
