/* Begin mobile splash screen css code */

.mobile-splash-screen {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #003087;
	position: relative;
	z-index: 1;
}
.mobile-splash-screen-hide {
	display: none;
}

#mobile-splash-start-button {
	margin-left: auto;
	margin-right: auto;
	height: auto;
}

#mobile-splash-start-button>input {
	width: 25%;
	height: 100%;
	font-size: 140%;
	font-weight: 700;
	color: black;
	padding: 0.3rem 0;
}

.content-container {
	width: 90%;
	margin: 0 auto;
	border-radius: 5px;
	background: white;
	padding: 1rem 0;
	text-align: center;
	line-height: 1.5;
	font-size: 80%;
}

.content-container h2 {
	padding: 1rem;
	line-height: 1.5;
	color: black;
}

.splash-logo {
	width: 300px;
	margin: 0.9rem auto;
	display: block;
}

@media (min-width: 900px) {
	.mobile-splash-screen {
		display: none;
	}
}

@media (max-width: 899px) and (orientation: landscape) {
	.content-container {
		padding: 1.2rem 0;
		margin-bottom: 50px;
	}
}

@media (max-width: 899px) and (orientation: portrait) {
	.content-container {
		padding: 1.3rem 0;
		margin-bottom: 70px;
	}
}

@media (max-width: 350px){
	.splash-logo {
		width: 90%;
	}
	.content-container h2 {
		font-size: 100%;
	}
	#mobile-splash-start-button>input {
		font-size: 110%;
	}
}
/* End mobile splash screen css code */

