body
{
	font-family: "Helvetica", "Arial", sans-serif;
	background-color: #2D3C42;
	color: white;
	font-size: 16px;
}

body a { color: #D84116; }
body main, body footer { margin: 1em; }
body header { display: none; }
body main { text-align: center; }

body main h1
{
	text-transform: lowercase;
	letter-spacing: 1px;
	padding: 0 0 1em 0;
}

body main p
{
	padding-bottom: 1em;
	line-height: 1.5em;
	text-align: center;
}

body main p.splashmessage
{
	font-size: 3em;
	text-align: center;
	text-transform: lowercase;
	letter-spacing: 1px;
	opacity: 0.5;
}

body footer { margin-top: 3em; }

body footer p
{
	font-size: 14px;
	text-align: center;
}

body main section h2 {
	font-size: 1.25em;
	padding-bottom: 0.125em;
	letter-spacing: 1px;
	font-weight: normal;
	text-transform: lowercase;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: #D84116;
	margin-bottom: 1em;
	
}

div.cards {
	width: 17em;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 1em;
	row-gap: 2em;
}

div.cards div.card {
	width: 8em;
	border: 1px dotted white;
	padding: 1em;
	border-radius: 0.5em;
	box-sizing:border-box;
}

div.cards div.card p {
	font-size: 0.8em;
}

div.cards div.card p a.button {
	background-color:  #D84116;
	padding: 0.5em;
	border-radius: 0.25em;
	color: white;
	text-decoration: none;
}

div.cards div.card p a.button:hover {
	background-color:  #B82106;
}

