@charset "utf-8";
/* CSS Document */

.thegrid {
  display: grid;
  grid-template-columns: auto auto auto auto ;
  grid-gap: 5px;
  font-size: 1.4em;
	color: #333333;
	
}




.thegrid a {
	text-decoration: none;
	color: #333333;
}

.thegrid a:hover {
	text-decoration: underline;
	color: #333333;
}


 
/* (B) ON SMOL SCREEN */
@media screen and (max-width:768px) {
  .thegrid { grid-template-columns: auto auto; }
}