body {
    align-items: center;
    justify-content: center;
    padding: 200px;
    display: flex;
    background-color: rgb(2, 36, 56);
}
.blog-post-card {
    background-color: white;
    border-radius: 20px;
    width: 300px;
    text-align: left;
    border: 1px solid;
}

.post-img {
    width: 100%;
    display: block;
    height: auto;
    border-bottom: 4px solid;
    border-radius: 10px;
    
}

.post-content {
    padding: 18px;
    text-align: center
}

.post-title {
    color: black;
    margin: 12px 0;
}

.post-excerpt {
    font-size: 1rem;
    color: grey;
    margin: 12px 0;
}

.read-more {
    display: inline-block;
    background: rgb(75, 69, 69);
    color: white;
    margin: 12px 0;
    border-radius: 5px;
    padding: 10px 16px;
    font-weight: 600;
    text-decoration: none;
    ;
    
}

.read-more:hover {
    background-color: grey;
}