.img-blog-container{
    height: 250px;
}
.blog-img{
    height: 100%;
    object-fit: cover;
}
.truncate-blog-text {
    display: -webkit-box;
    -webkit-line-clamp: 5; /* número de líneas máximo */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post{
    margin-block: 50px;
}
.post header h1{
    text-align: center;
}
main{
    margin-block: 50px;
}
main h1{
    text-align: center;
}
ul{
    list-style: none;
    color: #fff;
    margin-block: 20px;
}
.featured-image{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-image img{
    margin: auto;
    width: 100%;
    max-width: 700px;
    margin-block: 20px;
}
.post-content p{
    color: #fff;
    margin-top: 20px;
}
.post-content h2{
    color: #fff;
    margin-top: 60px;
    text-align: center;
}