body, html {
  font-family: Helvetica, sans-serif;
  margin-top: 30px;
  padding: 0 20px;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.page-container {
  width: 80vw;
  max-width: 1200px;
  min-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-container {
  width: 80vw;
  max-width: 1200px;
  min-width: 320px;
  text-align: start;
  align-items: start;
}

.external-image img {
   border: 3px solid #333333;
   width: 300px;
   height: 200px;
   object-fit: cover;
}

.external-link a {
   text-decoration:none;
   font-size: 24px;
   color: dark blue;
   line-height: 1.8;
}

.monospace {
   text-decoration:none;
   color: #dark gray;
   font-family: 'Courier New', Courier, monospace;
}

#footer {
  margin: 20px 0 20px 0;
  padding: 10px;
}

.footer-item {
  margin: 0 5px 0 5px;
}

/* Blog-specific styles */
.blog-post {
  margin-bottom: 2rem;
}

.blog-post h1 {
  margin-bottom: 0.5rem;
}

.blog-post-date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-list {
  list-style: none;
  padding: 0;
}

.blog-list li {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.blog-list h2 {
  margin-bottom: 0.5rem;
}

.blog-list h2 a {
  text-decoration: none;
  color: #333;
}

.blog-list h2 a:hover {
  text-decoration: underline;
}