.posts {
	display:flex;
	align-items:baseline;
	justify-content:space-between;
	flex-wrap: wrap;
}
.post {
	border: 1px solid grey;
	box-shadow: 12px 10px 17px -5px rgba(0,0,0,0.75);
	width:20%;
	margin:2%;
	padding:5px;
}
/* Large screens */
@media (min-width: 1280px) {
	.post {
		width: 28%;
	}
}
/* Medium screens */
@media (max-width: 1279px) {
	.post {
		width: 45%;
	}
}
/* Small screens */
@media (max-width: 800px) {
	.post {
		width:95%;
	}
}
.post div {
	margin:20px;
}
.post img {
	width:90%;
	margin:5%;
}
.post .profile {
	color:grey;
}
.post .profile img {
	margin: 0px 20px 0px 20px;
	height:20px;
	width:auto;
}
.post .tags {
	color:#33b5e5;
}
.post .likes img {
	margin: 0px 20px 0px 20px;
	height:15px;
	width:auto;
}