body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #fff;
}

.blog-post-card {
  background-color: white;
  border: solid 1px lightgray;
  border-radius: 5%;
  width: 30%;
  text-align: center;
  margin: 3rem auto;
  box-shadow: 2px 2px 10px 2px lightgray;
}

.post-img {
  width: 100%;
  border-bottom: 4px black solid;
  border-radius: 5% 5% 0 0;
}

.post-content {
  padding: 1rem;
}

.post-title,
.post-excerpt {
  margin: 1rem;
}
.post-title {
  color: #333;
}

.post-excerpt {
  color: #666;
}

.read-more {
  color: #eee;
  background-color: #333;
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 10%;
  display: inline-block;
  text-decoration: none;
}

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