I tried making this but it is not displaying exactly how I would like. I did pass it. How do I make the image stay where it should in the white? How do I make a cute little card like the example? If I adjust the white to be bigger the image gets bigger.
https://www.freecodecamp.org/learn/responsive-web-design-v9/lab-blog-post-card/lab-blog-post-card
.blog-post-card {background-color: white;
border-radius: 5px;
background-size: 5px;
text-align: center;
width: 800px;}
.post-img {
border-bottom: 5px solid seagreen;
background-size: auto;
width: 100%;
margin: 50px;}
.post-content {padding: 20px;}
.post-title {
color: teal;
margin: 20px;
}
.post-excerpt {
color: teal;
margin: 20px;
}
.read-more {background-color: yellow;
color: OrangeRed;
margin: 20px;
padding: 20px;
border-radius: 10px;
display: inline-block;
width: 80px;
height: 20px;}
body {background-color: YellowGreen}
.read-more:hover {background-color: RebeccaPurple}

