/* CSS Document */

html {
    box-sizing: border-box;
	background-color: rgba(250, 249, 243, 0.87);
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
	font-family: 'Roboto', sans-serif;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

header {
	position: fixed;
	top: 0;
	z-index: 1;
	margin: 0;
	padding: 0px;
	text-align: right;
}

section {
	margin-top: 2em;
	padding: 0 1rem;
}

/*section:first-of-type {
	margin-top: 0;
	padding-top: 1em;
}*/

section > *:first-child {
	margin-top: 0;
}

section > *:last-child {
	margin-bottom: 0;
}

h1 {
	font-weight: 100;
	margin: 1rem 0;
}

h2 {
	font-weight: 100;
	margin: 0.5rem 0;
}
h3 {
	font-weight: 100;
	margin: 0.25rem 0;
}

p {
	margin: 0.83em 0;
}

a {
  color: cornflowerblue;
}

.SecLight {
	color: #941751;
}

.SecDark {
	background-color: #941751;
	color: rgb(250, 249, 243);
}

.hero {
	text-align: center;
}

section.hero {
	margin-top: 0;
	padding-left: 0;
	padding-right: 0;
}

.hero h1 {
	margin: 0;
}

.hero h2 {
	font-size: 2em;
	margin: 0;
}

.hero h3 {
	font-size: 1.5em;
}

.LinkBox {
    display: flex;
    flex-flow: row wrap;
	gap: 0.25em;
	margin-top: 0.25em;
}

.LinkBox article {
	border: 1pt solid #941751;
	flex: 1 15rem;
}

.LinkBox h1 {
	margin: 0;
	font-size: 1.4rem;
	text-align: center;
}

.LinkBox ul {
	margin-top: 0em;
	margin-bottom: 0em;
}

.SiteNav {
    width: auto;
	position: relative;
	display: block !important;
	line-height: 1;
	font-size: .85em;
    /*background: linear-gradient(0deg, grey, white);*/
}
.SiteNav p {
	margin: 0;
	color: white;
	float: left;
}
.SiteNav ul {
	display: inline-block;
	list-style-type: none;
	margin: 0;
	padding: 0;
	/*text-transform: uppercase;*/
}
.SiteNav ul li {
	display: inline-block;
}
.SiteNav ul li a {
	/*padding-top: .25em;
	padding-bottom: .25em;*/
	text-decoration: none;
	/*text-decoration: underline;*/
	letter-spacing: .15em;
	transition: color 1s;
	background-color: #941751;
	color: rgb(250, 249, 243);
}
.SiteNav ul li a:hover {
	outline: none;
	transition: color 1s;
	text-decoration: none;
	background-color: rgba(250, 249, 243, 0.87);
	color: #941751;
}

table {
	border-spacing: 1.5rem;
}

/* LARGE - Computer, iPad, etc */
@media (min-width: 801px) {
	html {
		font-size: 18px;
	}
	.Explainer {
		font-size: 1.5em;
	}
	.SiteNav ul li {
		margin-left: 3.5em;
	}
	.hero h1 {
		font-size: 5em;
	}
	.LinkBox ul {
		padding: 0 0 0 1.2em;
	}
}

/* SMALL - Phone */
@media (max-width: 800px) {
	ul {
		/*list-style-type: none;*/
		list-style-position: inside;
		padding-left: 0.5em;
		font-size: 0.8em;
	}
	.SiteNav ul li {
		margin-left: 0.25em;
	}
	.hero h1 {
		font-size: 3em;
	}
	.LinkBox ul {
		padding: 0 0 0 .5em;
	}
}

.SiteNav ul li:nth-of-type(1) {
	margin-left: 0;
}
