.blog-post-card {
  background-color: white;
  border: 10px solid green;
  border-radius: 20px;
  text-align: center;
  width: 300px;   
}

.post-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-bottom: 50px solid purple;
}

.post-content {
  padding: 10px;
  
}

.post-title {
  color: purple;
  margin: 20px;
}

.post-excerpt {
  color: green;
  margin: 10px;
}

.read-more {
  background: green;
  color: white;
  margin: 10px;
  padding: 10px 5px 10px 5px;
  border-radius: 5px;
  display: inline-block;
}

.read-more:hover {
  background: purple;
}