body {
  background-color: #e8e4e4;
}
.blog-post-card {
  margin: auto;
  margin-top: 25px;
  border-radius: 19px;
  width: 100%;
  max-width: 335px;
  background-color: white;
  text-align: center;
}
.post-img {
  background-size: contain;
  height: 200px;
  width: 100%;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
  border-bottom: 4px solid silver;
}
.post-content {
  padding: 15px;
}
.post-title {
  color: #232020;
  margin: 3px;
  font-size: 1.5rem;
  margin-bottom: 9px;
}
.post-excerpt {
  color: #232020;
  margin: 3px;
  font-size: 1.1rem;
  line-height: 1.1.5;
  font-family: Montserrat;
}
.read-more {
  color: #c9c6c6;
  background-color: #0c0b0b;
  margin: 3px;
  padding: 3px;
  width: 100px;
  height: 25px;
  border-radius: 7px;
  display: inline-block;
  margin-top: 11px;
  padding-top: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  font-family: Open Sans;

}
.read-more:hover {
  background-color: rgb(79, 77, 77);
}