@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');

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

body {
  background: #fff;
  color: #111;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  padding: 40px 40px 40px 80px;
  max-width: 900px;
}

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

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

header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 80px;
  padding-bottom: 20px;
  border-bottom: 3px solid #111;
}

.site-name a {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: none;
}

nav a {
  margin-left: 24px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

main {
  max-width: 650px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
  text-transform: none;
}

.meta {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 48px;
}

main p {
  margin-bottom: 20px;
}

main em {
  font-style: italic;
}

main h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
}

main h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
}

blockquote {
  border-left: 4px solid #FF0054;
  padding-left: 20px;
  margin: 32px 0;
  font-style: italic;
  color: #333;
}

/* Index page */
.post-list {
  list-style: none;
  margin-top: 24px;
}

.post-list li {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee;
}

.post-list li:last-child {
  border-bottom: none;
}

.post-list a {
  font-size: 22px;
  font-weight: 700;
  border-bottom: none;
  display: block;
  margin-bottom: 4px;
}

.post-list a:hover {
  color: #FF0054;
}

.post-list .date {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
}

/* About page */
.about-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 32px;
  filter: grayscale(100%);
}

.contact-link {
  color: #FF0054;
  border-bottom-color: #FF0054;
}

footer {
  margin-top: 100px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
  font-size: 13px;
  color: #999;
  font-style: italic;
  max-width: 650px;
}
