.content{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:35px;
    padding:40px;
}

.post-card{
    width:min(100%, 900px);
    background:#2d2d2d;
    border-radius:5px;
    overflow:hidden;
    border:1px solid #fffefe;
}

.post-card img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.post-content{
    padding:25px;
}

.post-content h2{
    color:antiquewhite;
    margin:15px 0;
    font-size:2rem;
}

.post-content p{
    color:#d4d4d4;
    line-height:1.8;
    font-size:1.1rem;
}

.post-footer{
    margin-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}