Design a Blog Post Card - Design a Blog Post Card

Tell us what’s happening:

I am struggling with step 20. I tried many different things, and I do not understand why my code does not pass.

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Blog Post Card</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="blog-post-card">
        <img class="post-img" src="https://cdn.freecodecamp.org/curriculum/labs/cover-photo.jpg" alt="Someone typing away on a keyboard">
        <div class="post-content">
            <h2 class="post-title">Learn to code with us</h2>

            <p class="post-excerpt">Dare changing careers by learning how to code. Take the plunge!</p>

            <a class="read-more">Read More</a>
        </div>
    </div>

</body>
</html>
/* file: styles.css */
.blog-post-card {
  border-radius: 2%;
  background-color: white;
  text-align: center;
  width: auto;
}

.post-img {
    width: 100%;
    border-bottom: 10px;
    border-radius: 2%;
}

.post-content {
  text-align: center;
  padding: 20px;
  font-weight: bold;
}

.post-title {
  color: green;
  font-size: 30px;
}

.post-excerpt {
  color: black;
}

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

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

a:hover {background-color: black;}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36

Challenge Information:

Design a Blog Post Card - Design a Blog Post Card
https://www.freecodecamp.org/learn/full-stack-developer/lab-blog-post-card/lab-blog-post-card

Your bottom-border style has a value that will not cause a visible border to appear on screen. Change the value and one will appear.

Here are some other values you can use .border-bottom - CSS: Cascading Style Sheets | MDN