/** custom css for SimpleBlog **/

.simpleblog__header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

simpleblog__postInfo{
    display: flex;
    flex-direction: column;
}

.simpleblog__post-featured{
    text-align: center;
}

.grid{
    display: grid;
}
.grid-cols-3{
    grid-template-columns: repeat(3, 1fr);
}