  body, table, tr, td {
   background-color: #84ff84;
   font: 10pt/16pt Arial; color:blue;
   font-weight:bold;
  }

/*
  iframe {
   border-width:0px; // replaces frameborder=0
   overflow:hidden; // replaces scrolling="no"
  }
*/
  
  .grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
   grid-gap: 0.5rem;
  }
 .grid > div {
   background: #CCFFDD; // #EDE7F6;
   padding: 0.25rem;
   border-radius: 0.25rem;
  }
  
  img {
   border: 0;
  }
 
  .center {
   text-align: center;
  }
 
  .inline {
    display: inline-block;
    text-align: center;
	vertical-align: text-top;
   }
  
  .icon {
   max-width:100%;
   height:auto;
  }
  
  .game_name {
   font-size: 2rem;
  }
  
  .game_instructions {
   font-size: 1.5rem;
  }
  
  a:link {
   color: #000099;
   text-decoration: underline;
  }

  a:visited {
   color: #663366;
  }

  a:hover {
   color:#007FFF;
   text-decoration: none;
   background-color: #FFFF00;
}

  .bottom {
   text-align:justify;
   font: 10pt Arial;
   color:rgb(64,64,64);
  } /* text at the bottom */