#postsContainer{
	padding: 	5px;
	width: 		calc(100% - 10px);
}
.post {
	position: 				relative;
	margin: 				5px;
	padding: 				10px 20px;
	background: 			#263238;
	border-radius: 			5px;
	border: 				1px solid #FFF;
	height: 				200px;
	justify-content: 		end;
	width: 					380px;
	text-align: 			center;
	overflow: 				hidden;
	background-size: 		cover;
	background-position: 	center;
	cursor: 				pointer;
}
.postDate {
	position: 			absolute;
	top: 				-1px;
	right: 				-1px;
	padding: 			5px;
	background: 		rgba(0, 0, 0, 0.6);
	border-radius: 		0px 0px 0px 5px;
	box-shadow: 		0px 0px 5px rgba(0, 0, 0, 0.5);
	font-size: 			12px;
	backdrop-filter: 	blur(5px);
	border: 			1px solid #fff;
}
.postTitle {
	position: 			absolute;
	left: 				0px;
	bottom: 			0px;
	padding: 			10px;
	width: 				100%;
	background: 		rgba(0, 0, 0, 0.6);
	border-top: 		1px solid #fff;
	backdrop-filter: 	blur(5px);
}