.pageWrapper {
	width: 100vw;
	height: fit-content;
	color: #FFF;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: left;
}

.splashContainer {
	height: 100vh;
	width: 100vw;
	background: url("../img/index_bg1_01.webp") no-repeat center center;
	background-size: cover;
	box-shadow: inset 0px -100px 100px 0px #000;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	color: #FFF;
	font-weight: 900;

	user-select: none;
}

.splashContainer p {
	margin: 10px;
}

.splashContainer .centerItems {
	text-align: center;
	width: 100%;
	text-shadow: 0px 1px 80px #000;
}

.splashContainer .actionButton {
	height: 40px;
	border-radius: 20px;
	padding: 5px 40px;
	background-color: #FFFFFF;
	color: #000;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	align-items: center;
	cursor: pointer;
	transition: 0.2s all;
	box-sizing: border-box;
	margin: 10px;
	border: none;
	text-shadow: 0px 1px 40px #000;
}

.splashContainer .actionButton:hover {
	background-color: #DDD;
}









.sectionTwo {
	min-height: 100vh;
	height: fit-content;
	width: 100vw;
	background: url("../img/index_bg2.webp") no-repeat center center;
	background-size: cover;

	box-shadow: inset 0px 100px 100px 0px #000,
		inset 0px -100px 100px 0px #000;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin:10px 0;
}

.sectionTwo .titleText {
	text-align: center;
	margin: 5% 0;
	color: #FFF;
	font-weight: 900;
	font-size: 3em;
}

.sectionTwo .cardContainer {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.sectionTwo .cardContainer .card {
	float: left;
	margin: 20px;
	background: #141414;
	width: calc(100% / 3 - 100px);
	min-width: 300px;
	max-width: 500px;
	height: 80%;
	max-height: 400px;
	min-height: 126px;
	border-radius: 20px;
	text-align: left;
	overflow: hidden;
}

.sectionTwo .cardContainer .card .cover {
	width: 100%;
}

.sectionTwo .cardContainer .card .title {
	padding: 0;
	margin: 15px;
	font-size: 1.5em;
}

.sectionTwo .cardContainer .card .content {
	padding: 0;
	margin: 15px;
	font-size: 1em;
}

.sectionTwo .cardContainer .card a {
	color: #FFF;
	text-decoration: none;
}

.sectionTwo .cardContainer .card a:hover {
	text-decoration: underline;
}






.sectionThree {
	width: 100%;
	background: url("../img/index_bg3.webp") no-repeat center center;
	background-size: cover;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px 0;

	user-select: none;
}

.sectionThree .titleText {
	text-align: center;
	margin-bottom: 10px;
	color: #FFF;
	font-weight: 900;
}

.sectionThree .content {
	margin-left: 20px;
	width: 100%;
	font-size: 23px;
}

.sectionThree a {
	text-decoration: none;
}

.sectionThree .actionButton {
	height: 40px;
	border-radius: 20px;
	padding: 5px 40px;
	background-color: #0085ff;
	color: #fff;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	align-items: center;
	cursor: pointer;
	transition: 0.2s all;
	box-sizing: border-box;
	margin: 20px;
	border: none;
}

.sectionThree .actionButton:hover {
	background-color: #0061bb;
}