Test 13. Your .read-more element should have a hover effect has failed to pass.
Blog Post Card
<div class="post-content">
<h2 class="post-title">Learning Fullstack Development</h2>
<p class="post-excerpt">Learn how to develop a website for both frontend and backend</p>
<a class="read-more" href="https://x.com/DiabGdkalem" target="_blank">Read More</a>
</div>
</div>
.blog-post-card {
background-color: white;
border: 5px solid brown;
border-radius: 50px;
text-align: center;
padding: 120px;
width: 500px;
}
.post-content {
padding: 85px;
}
.post-img {
width: 500px;
border-bottom: 3px double indigo;
}
.post-title, .post-excerpt {
margin: 20px;
color: maroon;
}
.read-more {
color: black;
background-color: beige;
margin: 35px;
display: inline-block;
border: 3px solid blue;
border-radius: 10px;
padding: 15px;
}
.read-more:hover {
color: green;
}