body {
	background: rgb(0,125,254);
	background: linear-gradient(135deg, rgba(0,125,254,1) 35%, rgba(0,189,255,1) 100%);
	color:#fff;
	font-family: -apple-system, BlinkMacSystemFont, sans-serif;
	margin-top:0;
}

a, a:visited {
	color: #fff;
	text-decoration-color: #0178FD;
}

a:hover {
	text-decoration-color: #ccc;
}

hr {
	background: #0178FD;
	border: 0;
	margin-top:1em;
	margin-bottom:1em;
	height: 1px;
	width: 80%;
}

header {
	text-align: center;
}

header h1#header-logo-text {
	display:none;
}

header img#header-logo {
	max-width: 1000px;
	width:85%;
}

header .subtitle {
	font-size: 3em;
	font-weight: 100;
}

nav {
	display:flex;
	align-content: space-evenly;
	flex-flow: row wrap;
	justify-content: space-evenly;
}

nav a, nav a:visited {
	color: #fff;
	display: block;
	padding:0.2em;
	font-size:2em;
}

section h2 {
	font-size: 5em;
	font-weight: 100;
	text-align: center;
	margin-bottom: 0.0em;
}

.feature {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
}

.feature h3 {
	font-size: 2em;
	font-weight: 100;
	text-align: center;
}

.feature .feature-left, .feature .feature-right {
	padding: 1em;
	width: 50%;
}

.feature-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-text {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
}

.feature-text p {
	font-size: 1.5em;
}

.feature img {
	width: 100%;
}

.feature-wide p {
	text-align: center;
}

footer {
	text-align: center;
}

@media only screen and (max-width: 1000px) {
	nav {
		flex-flow: column nowrap;
	}
	.feature {
		flex-flow: column nowrap;
	}
	
	.feature-image {
		order: 1;
		text-align: center;
		width: inherit !important;
	}
	
	.feature-image-main {
		max-width: 80%;
	}
	
	.feature-text {
		order: 2;
		width: inherit !important;
	}
	
	.feature-text p {
		font-size: 1em;
	}
}