@import url('https://fonts.googleapis.com/css2?family=Silkscreen&display=swap');

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

body {
  background: #fafafa;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

main {
  max-width: 520px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

h1 {
  font-family: 'Silkscreen', monospace;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  color: #111;
}

h2 {
  font-family: 'Silkscreen', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #666;
  margin-bottom: 0.75rem;
}

.intro {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

section {
  margin: 2.5rem 0;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

li {
  margin: 0.4rem 0;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2.5rem 0;
}

a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

a:hover {
  border-bottom-color: #333;
}

footer {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #999;
}

footer p {
  margin: 0.2rem 0;
}

.links {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.links a {
  font-size: 0.85rem;
  color: #666;
}
