/* This will eventually become my standard styles document */
body
{
  display: grid;
  grid-template-columns: 200px;  
}

/* You have reached... */
preheader
{
  grid-column: 1/end;
  grid-row 1;
  height: 030px;
  font-size: 20px;
  text-align: center;
}

/* David Grund's Web Site */
header
{
  grid-column: 1/end;
  grid-row 2;
  height: 060px;
  font-size: 42px;
  font-family: blackchancery;
  text-align: center; 
}

navmenu
{
  grid-column: 1;
  grid-row 3;
  font-size: 20px;
  text-align: center;
}

article
{
  grid-column 2;
  grid-row 3;
  font-size: 20px;
}

footer
{
  grid-column: 1/end;
  grid-row: 4;
}

