body{ 
  font: 'Nunito Semibold';
  text-align: center;
  background: #e0e0e0;    
}

 /* Columns in Grid CSS... */ 
#content{
  display: grid;
  /* grid-template-columns: 33.3% 33.3% 33.3%; */
  /* grid-template-columns: 1fr 2fr 1fr; */
  /* grid-template-columns: repeat(9, 1fr); */
  
  grid-template-columns: repeat(3, 1fr);

  /* grid-auto-rows: 200px; */
  /* grid-auto-rows: minmax(200px, auto); */
  grid-template-rows: repeat(3, minmax(200px, auto));

  /* grid-column-gap: 5px;
  grid-row-gap: 3px; */
  
  grid-gap: 3px;

  max-width: 960px;
  margin: 0 auto;
  font-size: 1.1em;
  font-weight: 600;
  font-family: 'Lucida Sans', 'Lucida Sans Regular';
}

#content div{
  background: #2f496e;
  /* background: #0f284d; */
  padding: 30px;
  color: #fff;
}

#content div:nth-child(even){
  background: #dcc7aa;
  color: #000;  
}

h2{
  color: #000;
  margin-top: 20px;
}

#content2{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, minmax(150px, auto));
  grid-gap: 3px;
  max-width: 65%;
  margin: 0 auto; 
  font-size: 1.2em;
  font-weight: 700;
}

#content2 div{  
  background: #1f1f29;
  padding: 30px;
  color: #fff;
}

#content2 div:nth-child(even){
  background: #f26968;
  color: #000;
}

.one{
  /* long hand */  
  /* grid-column-start: 1;
  grid-column-end: 3; */

  /* short hand */
  grid-column: 1 / 3;
}

.two{
  grid-column: 3 / 7;
}

.three{
  /* long hand */
  /* grid-column-start: 4;
  grid-column-end: 7;
  grid-row-start: 2;
  grid-row-end: 4; */

  /* short hand */
  grid-column: 1 / 5;
  grid-row: 2 / 5;
}

.four{
  grid-column: 5 / 7;
  grid-row: 2 / 5;
}

 .five{
  grid-column: 1 / 7;
  grid-row: 5 / 6;
}

.six{
  grid-column: 1 / 7;
  grid-row: 6 / 7;
}

#nextPage {  
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1em;
  font-weight: 600;  
  margin-top: 30px;
  margin-left: 950px;
}

#license{
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 0;  
  padding-left: 0px;
  margin-left: -35px;  
}

#license a {
  text-decoration: none;
}

#footer{
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.4em;
  font-weight: 700;
  padding-top: 0;
  margin-top: 0;
}

#footer a{
  text-decoration: none;
}

#footer a:hover {  
  color: #000;
}