@charset "utf-8";
/* CSS Document */
/* Sheet specific to the Z1Gaming home page*/

#heroBox {
	height: 700px;
	background: rgba(25,25,25,1.00);
	background-image: url("../assets/VEX_BG_2024_3 copy.png");
	background-size: cover;
	background-position: 50% 50%;
}
#gamessBox {
	height: auto;
	margin-bottom: 30px;
	background: rgba(5,5,5,1.00);
}
#gamesContainer {
	max-width: 100%;
	display: flex;
	justify-content: center;
	flex-flow: column;
}
#gameTxt {
	max-width: 75%;
	margin: 20px auto;
}
#merchBox {
	height: auto;
	background: rgba(200,200,200,1.00);
}
/* Pertains to everything found within the VIDS BOX */
.videoCard {
	position: relative;
	width: 20%;
	height: auto;
	max-height: 375px;
	margin: 20px 1%;
	padding: 0;
	background: rgba(204,10,44,1.00);
	overflow: hidden;
	border: 3px solid rgba(220,234,239,1.00);
	border-radius: 25px;
	box-shadow: 0 3px 5px 1px;
	transition: 0.5s ease-out;
	-webkit-transition: 0.5s ease-out;
	-moz-transition: 0.5s ease-out;
	-webkit-transform: perspective(2500px );
	transform: perspective(2500px )
}
/* .videoCard:hover {
	position: relative;
	width: 25%;
	height: auto;
	margin: 20px 0.5%;
	padding: 0;
	background: rgba(204,10,44,1.00);
	overflow: hidden;
	border: 3px solid rgba(220,234,239,1.00);
	border-radius: 25px;
	box-shadow: 0 16px 16px 3px;
	transform-origin: top;
	-webkit-transform: perspective(2500px )rotateX(30deg) scaleZ(5);
	transform: perspective(2500px )rotateX(30deg) scaleZ(5);
} */


/* Pertaining to all items contained within the MERCH BOX */
.merchCard {
	position: relative;
	width: 25%;
	height: auto;
	margin: 20px 1%;
	padding: 0;
	background: rgba(220,234,239,1.00);
	border: 3px solid rgba(140,140,140,1.00);
	transition: 0.5s;
}
.merchCard:hover {
	border: 3px solid rgba(204,10,44,1.00);
}


/*iPad*/
@media (max-width: 1400px) {
	.merchCard {
		width: 30%;
	}
}

/*iPhone Landscape*/
@media screen and (max-width: 930px) {
	#heroBox {
	background-image: url("../assets/VEX_BG_2024_3_b.png");
	}
	.merchCard {
		width: 45%;
	}
}

/*iPhone Portrait*/
@media screen and (max-width: 700px) {
	#heroBox {
	background-image: url("../assets/VEX_BG_2024_3_b.png");
	}
	.merchCard {
		width: 90%;
	}
}