body, main {
	max-width: none;
	width: 100%;
}

header {
	max-width: 1000px;
}

main, .center {
	display: flex;
	flex-direction: column;
	align-items: center;
}

header, main, footer {
	overflow-x: hidden;
}

/* Splash Section */

#splash {
	/*max-width: 1000px;*/
	padding-top: 10vh;
	padding-bottom: 20vh;
	display: grid;
	grid-template-columns: 1fr min(10vw, 100px) min(40vw, 500px) min(40vw, 500px) min(10vw, 100px) 1.0fr;
}

#splash-text {
	grid-column: 3 / span 2;
	grid-row: 1;
	padding-right: 10%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 2;
}

h1 {
	font-size: 65px;
	line-height: 1.2;
	font-weight: 600;
}

@media only screen and (max-width: 1200px) {
	h1 { font-size: 60px; }
}

main p {
	font-size: 150%;
	line-height: 1.45;
}

#stat-section {
	font-size: 140%;
	display:flex;
	background-color: #E3A008;
	color:white;
	padding: 25px 10px;
	margin: 30px;
	border-radius: 5px;
	border-style: none;
	border-radius: 10px;
	box-shadow: 0 10px 15px rgba(50,50,50,0.25);
}

#stat-first {
	width: 50%;
}

@media only screen and (max-width: 800px) {
	#stat-section { display: block; }
	#stat-first { width: 100%; }
}

.stat-number {
	font-size: 300%;
	font-weight:700;
	line-height: 1;
}

.stat-text {
	font-size:110%;
	opacity:0.75;
}


#splash-text-body {
	line-height: 1.45;
	width: 50%;
	font-size: 150%;
	padding-top: 50px;
	padding-bottom: 50px;
	font-weight: 200;
}

#splash-image {
	grid-column: 4 / span 2;
	grid-row: 1;
	display: flex;
	align-items: center;
}

#features-section-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--background-color-secondary);
	width: 100%;
}

#features-section-wrapper p {
	font-size: 130%;
}

#end-cta {
	width: 100%;
}

#features-section, #end-cta {
	max-width: 1000px;
}

#more-link {
	text-align: center;
	padding-top: 10px;
	font-size: 120%;
}

#splash-button-parent {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 45%;
}

#features-section p {
	font-weight: 200;
}

.signup-link {
	display: inline-block;
}

main img {
	width: 100%;
}

#info div {
	padding-left: 10%;
	padding-right: 10%;
	margin-top: 20px;
}

#info div p {
	color: gray;
}

main a:link, main a:visited, footer a:link, footer a:visited {
	color: black;
	text-decoration: none;
}

.button-link:hover {
	background-color: var(--accent-color-hover);
	/*transform: translate(0px, -2px);*/
}

.button-link:link {
	color: var(--background-color-main);
}

.button-link:visited {
	color: var(--background-color-main);
}

.button-link {
	cursor: pointer;
	background-color: var(--accent-color); 
	border: none;
	border-radius: 7px;
	color: var(--background-color-main);
	padding: 9px 21px 9px 21px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	transition: transform ease 0.25s;
}

section {
	padding-top: 5vh;
	padding-bottom: 5vh;
}	

@media only screen and (max-width: 1000px) {
	#splash {
		padding-top: 0px;
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
	}

	#splash-image, #splash-text-body {
		width: min(50%, 350px);
		padding-top: 0px;
		padding-left: 0px;
	}

	#splash-text {
		padding-right: 0px;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	h1 {
		font-size: 10vw;
	}
}

.feature {
	display: flex;
	align-items: center;
	flex-direction: row;
	text-align: right;
	padding-top: 2vh;
	padding-bottom: 2vh;
}

.feature:nth-of-type(odd) {
	flex-direction: row-reverse;
	text-align: left;
}

.feature-info {
	flex:1;
	padding: 5vw;
}

.feature-image {
	width: 33%;
}

#more-link:link, #more-link:visited {
	text-decoration: none;
} 

#more-link:hover {
	text-decoration: underline;
}

.three-col-view > * {
	padding-top: 4vh;
	padding-bottom: 4vh;
	flex: 1 1 30%;
	width: 30%;
	text-align: center;
	font-size: 100%;
}

@media only screen and (max-width: 800px) {
	.three-col-view > * {
		flex: 1 1 50%;
	}
}

.three-col-view p {
	font-size: 14pt;	
}

@media only screen and (max-width: 800px) {
	#splash {
		flex-direction: column-reverse;
		align-items: center;
	}
	
	#splash-image {
		width: 40%;
	}
	
	#splash-text {
		text-align: center;
		padding-right: 0%;
	}
	
	#splash-text-body {
		width: 100%;
	}
	
	.feature, .feature:nth-of-type(even), .feature:nth-of-type(odd) {
		flex-direction: column-reverse;
		align-items: center;
		text-align: center;
	}
	
	.feature-info {
		width: 75%;
	}
	
	.feature:nth-of-type(odd) p {
		padding-left: 0vw;
	}
	
	.feature-image {
		width: 25%;
	}			
}