body {
  background-color: whitesmoke;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.blog-post-card {
  margin: 1em auto;
  background-color: white;
  width: clamp(5em, 30em, 90vw);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0.625em;
  text-align: center;
}

.post-img {
  width: 100%;
  border-radius: 0.625em 0.625em 0px 0px;
  border-bottom: 1px solid black;
}

.post-content {
  padding: 1em;
}

.post-title, .post-excerpt {
  color: rgb(8, 8, 8);
  margin: 0.275em;
}

.read-more {
  text-decoration: none;
  background-color: orange;
  color: white;
  padding: 0.5em;
  margin: 1em;
  margin-bottom: 0.275em; 
  display: inline-block;
  border-radius: 0.25em;
}

.read-more:hover {
  background-color: orangered;
}