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

body {
  position: relative;
  background: #000;
  color: #c8c8c8;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

a {
  color: #c8c8c8;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #444;
  transition:
    color 0.15s,
    text-decoration-color 0.15s;
}
a:hover {
  color: #fff;
  text-decoration-color: #888;
}

header {
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1e1e1e;
}

header h1 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

header p {
  font-size: 15px;
  color: #666;
  font-style: italic;
}

header nav {
  margin-top: 20px;
  display: flex;
  gap: 24px;
}

header nav a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}
header nav a:hover {
  color: #c8c8c8;
}

section {
  margin-bottom: 56px;
}

h2 {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 20px;
}

p {
  margin-bottom: 14px;
  color: #999;
}
p:last-child {
  margin-bottom: 0;
}

.entry {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0 24px;
  margin-bottom: 18px;
}
.entry:last-child {
  margin-bottom: 0;
}

.entry-year {
  font-size: 14px;
  color: #444;
  padding-top: 1px;
  font-style: italic;
}

.entry-title {
  color: #c8c8c8;
  font-size: 16px;
  display: block;
}

.entry-sub {
  display: block;
  font-size: 14px;
  color: #555;
  font-style: italic;
}

.divider {
  border: none;
  border-top: 1px solid #1e1e1e;
  margin: 56px 0;
}

ul.interests {
  list-style: none;
  padding: 0;
}

ul.interests li {
  color: #999;
  font-size: 16px;
  padding: 5px 0;
}

ul.interests li::before {
  content: "–";
  color: #444;
  margin-right: 12px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

footer {
  font-size: 13px;
  color: #444;
  font-style: italic;
}
