body {
  margin: 0;
  background: #050505;
  color: #e8e8e8;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", monospace;
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
}

.archive {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 8px;
}

section {
  margin: 28px 0;
}

hr {
  border: none;
  height: 14px;
  max-width: 820px;
  margin: 32px auto;
  background:
    linear-gradient(#e8e8e8 0 0) top / 100% 2px no-repeat,
    repeating-linear-gradient(
      90deg,
      #e8e8e8 0 10px,
      transparent 10px 14px
    );
  image-rendering: pixelated;
}

a {
  color: #e8e8e8;
  text-decoration: underline;
}

a:hover {
  color: #9cff9c;
}

/* TOP CATEGORY LINKS */

.category-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.category-box {
  color: inherit;
  text-decoration: none;
  padding: 0;
}

.category-box h2 {
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.category-box p {
  display: none;
}

.category-box:hover {
  color: #9cff9c;
}

/* BULLETED INDEX LIST */

.category-list {
  margin: 32px auto;
  text-align: center;
  max-width: 420px;
}

.category-list h2 {
  text-align: center;
  margin-bottom: 16px;
}

.category-list ul {
  list-style-position: inside;
  list-style-type: disc;
  padding-left: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

.category-list li {
  margin: 8px 0;
}

.category-list a {
  text-decoration: underline;
}

/* LAST UPDATED */

.last-updated {
  font-size: 12px;
  opacity: 0.75;
  letter-spacing: 0.03em;
}

/* NEWSLETTER SIGNUP */

.newsletter {
  margin: 36px auto;
  max-width: 420px;
  text-align: center;
}

.newsletter p {
  font-size: 13px;
  opacity: 0.8;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.newsletter input {
  background: transparent;
  border: 1px solid #e8e8e8;
  color: #e8e8e8;
  font-family: inherit;
  font-size: 14px;
  padding: 8px;
  width: 220px;
}

.newsletter button {
  background: transparent;
  border: 1px solid #e8e8e8;
  color: #e8e8e8;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 12px;
  cursor: pointer;
}

.newsletter button:hover {
  color: #050505;
  background: #e8e8e8;
}

/* MOBILE */

@media (max-width: 600px) {
  .category-grid {
    gap: 18px;
  }

  .category-list {
    max-width: 100%;
  }

  .newsletter form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter input {
    width: 100%;
    max-width: 260px;
  }
}
/* ICONS */

.site-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.title-icon {
  width: 20px;
  height: 20px;
  image-rendering: pixelated;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.download-icon {
  width: 14px;
  height: 14px;
  image-rendering: pixelated;
}
/* SECTION ICONS */

.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.section-icon {
  width: 18px;
  height: 18px;
  image-rendering: pixelated;
}