body {
  font-family: monospace;
  color: #1c1c1c;
  background: #f5f5f5;
  text-transform: lowercase;
  max-width: 65ch;
  margin: 2rem auto;
  line-height: 1.6;
  padding: 1rem;
}
@media (prefers-color-scheme: dark) {
  body {
    color: #f5f5f5;
    background: #1c1c1c;
  }
}
a {
  text-decoration: underline;
  color: currentColor;
}
a:hover {
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
}
