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

body {
  font-family: monospace, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 3rem 2.5rem 2rem;
  border-bottom: 1px solid #464646;
}

header h1 {
  font-size: 2rem;
  font-weight: 600;
}

header p {
  margin-top: 0.5rem;
  color: #464646;
  font-size: 0.95rem;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
}

#blog-list {
  list-style: none;
}

#blog-list li:not(:last-child) {
  border-bottom: 1px solid #464646;
}

#blog-list a {
  display: block;
  padding: 1.25rem 0;
  text-decoration: none;
  color: #464646;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

#blog-list a:hover {
  color: #000000;
  transform: translateX(2px);
}

footer {
  text-align: center;
  padding: 1.5rem;
  color: #464646;
  font-size: 0.85rem;
  border-top: 1px solid #464646;

}

footer a {
  text-decoration: none;
  color: inherit;
}

footer a:hover {
  color: #000000;
  text-decoration: underline;
}