body{
  background-color: tan;
}
.blog-post-card{
  background-color: white;
  width: 350px;
  margin: auto;
  margin-top: 200px;
  text-align: center;
  border-radius: 15px;
}
.post-img{
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: auto;
  border-bottom: 4px solid #312319;
}
.post-content{
  padding: 20px 15px;
}
.post-title{
  color: #312319;
  margin: 17px auto;
}
.post-excerpt{
  color: #6B705C;
  margin: 25px auto;
}
.read-more{
  display: inline-block;
  padding: 8px;
  margin: 5px;
  background-color: #6D4C30;
  border-radius: 5px;
  text-decoration: none;
  color: white;
}
.read-more:hover{
  background-color: #B48460;
}