.postContainer {
	color: #f2fffc;
	width: 100%;
	height: auto;
	border-bottom: 1px solid #A23FFF;
	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: #A23FFF10;
}

.dataContainer {
	position: relative;
	width: 55%;
	height: auto;
	top: 0;
	left: 0;
	display: inline-block;
	float: left;
	text-decoration: none;
}

.imageContainer {
	position: relative;
	display: inline-block;
	top: 0;
	width: 35%;
	height: auto;
	text-align: center;
	float: right;
}

.gameImage {
	position: relative;
	top: 0;
	max-width: 100%;
	max-height: 100%;
}

.gameImageDesktop {
	display: inline-block;
}

.gameImageMobile {
	display: none;
}

.hackInfo {
	display: inline-block;   
}

.hackInfoEntry {
	margin-bottom: 5px;
	font-size: 1.25rem;
}

.Updated {
	color: #10F010;
}

.Maintenance {
	color: #C03FFF;
}

.Outdated {
	color: #F01010;
}

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

.postSubtitle {
	font-size: 1.25rem;
}

#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: #BAFF39;
	padding: 2px;
	margin: 0;
	cursor: pointer;
}

.pageButton:hover {
	background-color: #BAFF3910;
}

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

#gameImages {
	text-align: center;
}

#gameImages img {
	display: inline-block;
	max-width: 30%;	
	max-height: 30%;
	margin: 1px 2px;	
}

.modal:hover {
	opacity: 0.7;
	cursor: pointer;
}

.arrow {
	top: 50%;
}

#left_arrow {
	left: 7%;
}

#right_arrow {
	right: 7%;
}

#modalDisplay img {
	position: fixed;
	margin: 0;
	max-width: 70%;
	max-height: 80%;
	display: inline-block;
}

.videoContainer {
	position: relative;
	width: 80%;
	height: 0;
	padding-bottom: 45%;
}

.video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.widgetContainer {
	position: relative;
	width: 80%;
	height: 200px;
}

.widget {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	max-height: 100%;
}

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

	.dataContainer {
		float: none;
		width: 100%;
		display: block;
	}

	.imageContainer {
		display: none;
	}

	.gameImageMobile {
		display: block;
		margin-bottom: 15px;
	}

	#modalDisplay i {
		font-size: 1.5rem;
	}

	#gameImages img {
		display: block;
		max-width: 100%;
		margin-bottom: 3px;
	}

	.modal:hover {
		opacity: 1;
	}

	.videoContainer {
		position: relative;
		width: 95%;
		height: 0;
		padding-bottom: 56.25%;
	}

	.widgetContainer {
		position: relative;
		width: 95%;
	}
}