.blog-post-card {
  background-color: white;
  border-radius: 12px;
  width: 50%;
  text-align: center;
}

.post-img {
  width: 100%;
  border-bottom: 10px solid maroon;
}
.post-content {
  padding: 20px;
}
.post-title,
.post-excerpt {
  color: teal;
  margin: 10px;
  padding: 10px 0;
}

.read-more {
  color: tomato;
  background-color: aliceblue;
  margin: 15px;
  padding: 10px;
  border-radius: 12px;
  display: inline-block;
}
.read-more:hover {
  background-color: lightgray;
}
