.postContainer {
/*	color: #f2fffc;*/
	color: #E0E0E0;
	width: 100%;
	height: auto;
	border-bottom: 1px solid #9f8d12;
	text-align: left;
	display: block;
	box-sizing: border-box;
	clear: both; /*Needed because of floats*/
	overflow: hidden; /*Needed to fix height because of floats */
	padding: 15px 10px 15px 10px;
	margin: 0;
}

.postContainer:hover {
	background-color: #9f8d1210;
}

.postTitle {
	font-size: 2rem;
	font-weight: bold;
}

.postSubtitle {
	font-size: 1.25rem;
}

.tagsAndDate {
	font-size: 1rem;
}

.postTags {
	float: left;
	font-style: italic;
}

.postDate {
	float: right;
	font-family: monospace;
}

#pagination {
	display: block;
	font-size: 1.25rem;
	text-align: center;
	height: auto;
	width: auto;
	margin-top: 20px;
}

#pagination ul {
	list-style: none;
	display: inline;
	margin: 0;
}

#pagination ul li {
	display: inline;
	margin: 0 7px;
}

.pageButton {
	display: inline;
	color: #ffed32;
	padding: 2px;
	margin: 0;
	cursor: pointer;
}

.pageButton:hover {
	background-color: #9f8d1210;
}

#currentPage {
	color: #f2fffc !important;
	text-decoration: underline;
}

@media screen and (max-width: 700px) { /*900*/
	.postTags, .postDate {
		float: none;
	}
}