.feed-container{
    width: 100%;
    display: flex;
    justify-content: center;
}

.feed-container .feed{
    width: 600px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}

.feed-container .feed *{
    text-decoration: none;
}

.post-preview{
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: 0.3s;
    margin: 20px;
}
.post-preview:hover{
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

.post-preview .hero-preview{
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-preview .hero-preview .post-title{
    display: inline-block;
    font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 5px;
	letter-spacing: .05em;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
    text-align: center;
    margin: 10px;
}

.post-preview .post-content-preview{
    padding: 10px;
    color: #333;
	font-weight: 400;
	font-size: 1em;
	line-height: 1.8;
	text-align: justify;
}

.post-preview .post-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.post-preview .post-info .post-author-info{
    display: flex;
    align-items: center;
}

.post-preview .post-info .post-author-info .post-author-picture{
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-right: 5px;
}

.post-preview .post-info .post-author-info .post-author{
    font-size: .85em;
}

.post-preview .post-info .post-time{
    font-size: .75em;
}

@media screen and (max-width: 600px) {
    .post-preview{
        margin: 10px 0px;
        border-radius: 0px;
    }
}
