body {
    background-color: rosybrown;
    font-family: Arial, sans-serif;
  }
  
  
  .blog-post-card {
    background-color: white;
    border-radius: 20px;
    height: 450px;
    width: 360px;
    margin: 0px auto 0px auto;
    text-align: center;
  }
  
  .post-img {
    width: 100%;
    height: 200px;
    border-bottom: 8px solid brown;
  }
  
  .post-content {
    text-align: center;
    padding: 20px;
  }
  
  .post-title {
    color: grey;
    margin: 15px auto 15px auto;
  }
  
  .post-excerpt {
    color: black;
    margin: auto;
    margin: 15px auto 15px auto;
  }
  
  .read-more {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: blue;
    height: 30px;
    width: 120px;
    border-radius: 10px;
    margin: 5px 40px 30px 40px;
    padding: 15px 10px 5px 10px;
  }
  
  .read-more:hover {
    background-color: violet;
  }
  
  .read-more:focus {
    background-color: pink;
  }