html,
body {
   font-size: 16px; /* base font reset */
   margin:0;
   padding:0;
   height:100%;
   background: #fff;
}


.grid-container {
  display: grid;
  max-width: 80%;
  margin: 0 auto;
  grid-template-columns: 100%;
  grid-template-rows: max-content max-content auto max-content;
  grid-template-areas:
    "header"
    "nav"
    "main"
    "footer";
}

header { grid-area: header;
text-align: center; }

nav { grid-area: nav;
font-family: 'Open Sans', sans-serif;
      text-align: center;
      font-size: 110%;
		margin: 2rem 0;}
		
nav a {
	margin: 0 0.5rem;
}

main { grid-area: main;
	font-family: 'Open Sans', sans-serif;
     text-align: justify;
      font-size: 100%;
      line-height: 200%;
	  }

footer { grid-area: footer; 
text-align: center;
font-size: 70%;
margin: 2rem;}


a:link,
a:visited,
a:active {text-decoration: none;
color: #96a9b9;
border-bottom: 1px dashed silver;}

a:hover {color: teal;}

.no {text-indent: 0;}

.toc {text-indent: 0;
text-align: left;
font-size: 80%;
line-height: 150%;
margin: 2rem 0.25rem;}

p {text-indent: 3rem;}

.center {text-align: center;
text-indent: 0;}

hr {
border: 0;
height: 1px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
margin-top: 40px;
margin-bottom: 40px;
}

/* TABLET SIZING */

@media only screen and (max-width: 799px) {

main {width: 90%;}

}

/* MOBILE SIZING */

@media only screen and (max-width: 414px) {

main {width: 95%;}

}
