body {
  font-family: sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  padding: 0;
  background-color: #edeff1;
  color: #1c1c1e;
}

a,
a:active,
a:link,
a:visited {
  color: #1c1c1e;
}

.container {
  text-align: left;
  margin: 0 auto;
  max-width: 800px;
  padding: 2rem 1rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

header a {
  font-weight: bold;
  text-decoration: none;
}

.header-links {
  display: flex;
  gap: 1.5rem;
}

.header-links a {
  font-weight: normal;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: lowercase;
  line-height: 1.2;
  font-weight: normal;
}

time {
  font-size: 0.9rem;
}

article time {
  display: block;
  margin-bottom: 2rem;
}

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

li {
  margin-bottom: 0.5rem;
}

.post-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 2rem;
  row-gap: 0.5rem;
  align-items: baseline;
}

.post-list li {
  display: contents;
}

.post-list a {
  justify-self: start;
}

p {
  margin: 0 0 1.5rem;
}

.post-summary {
  margin-top: 7rem;
}

.post-summary:first-of-type {
  margin-top: 3.5rem;
}

footer {
  font-size: 0.75rem;
  margin-top: 5rem;
}

img {
  max-width: 100%;
}

aside,
blockquote {
  border-left: 3px solid #1c1c1e;
  margin: 2rem 0;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
}

blockquote {
  font-style: italic;
}

.img-sm {
  max-width: 400px;
}
.img-md {
  max-width: 600px;
}

a:hover {
  text-decoration: none;
}

.img-album {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.img-album img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
