/* Thanks to both Mozilla and https://www.miriamsuzanne.com/ for their excellent CSS tutorials */

body {
	display: grid;
	grid-gap: 1.25em;
	grid-template-rows: auto auto 1fr auto;
	min-height: 100vh;
	padding-right: 20px;
	padding-left: 20px;
	background-repeat: repeat;
	background-image: url(Assets/Interface/StenoPad_Tile.gif);
	background-color: #ffffff;
}

header {
	text-align: center;
}

nav {
	color: #000000;
	font-size: 1rem;
	line-height: 1.3rem;
	margin-left: -25px;
	font-family: "Courier New", Courier, monospace;
}

nav a:link {
	color : #FF3333;
	text-decoration : none;
}

nav a:hover  {
	color : #3366CC;
	text-decoration : none;
	border-bottom-width : 1px;
	border-bottom-style : solid;
	border-bottom-color : #FF6633;
}

nav a:visited {
	color: #1c68b1;
	text-decoration: none;
}

h1 {
	font-weight: bold;
	color: #333333;
	line-height: 2rem;
	margin-top: 8px;
	border-bottom: 1.5px solid;
	border-bottom-color: #FF6633;
	font-family: "Courier New", Courier, monospace;
}

h2 {
	font-weight: normal;
	color: #000;
	border-bottom-color: #999999;
	border-bottom-width: 2px;
	border-bottom-style: dashed;
	font-family: "Courier New", Courier, monospace;
}

p {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-size: 1.125rem;
	line-height: 1.6rem;
	color: #000000;
	margin-bottom: 15px;
	font-weight: lighter;
}

p a:link {
	color : #FF3333;
	text-decoration : none;
}

p a:hover  {
	color : #3366CC;
	text-decoration : none;
	border-bottom-width : 1px;
	border-bottom-style : solid;
	border-bottom-color : #FF6633;
}

p a:visited {
	color: #1c68b1;
	text-decoration: none;
}

ol {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 1.125rem;
	font-style: normal;
	line-height: 1.6rem;
	color: #000000;
	margin-left: -10px;
	margin-bottom: 20px;
	font-weight: lighter;
}

footer {
	color: #000000;
	font-size: 0.9rem;
	line-height: 1.5rem;
	font-family: "Courier New", Courier, monospace;
}

span {
	font-weight: bold;
	font-family: "Courier New", Courier, monospace;
	font-size: 1.125rem;
}

@media (min-width: 45em) {

body {
	grid-template-areas:
	'header header'
	'nav main'
	'nav footer'
	;
}
 
header {
	grid-area: header;
	text-align: left;
}

nav {
	grid-area: nav;
}

main {
	grid-area: main;
}

footer {
	grid-area: footer;
}
}