table{
  border-collapse: collapse; /*This removes the spaces betweeen the graph*/
  display: table;
  
}

table th {
  text-align: left; /*moves the text to the left*/
  background-color: black; /* makes the graph heading black*/
  color: white;
  border: 2px solid black;
  padding: 4px 30px 8px 4px;
}

table td {
  border: 1px solid gray;
  padding: 4px 8px;
  
}


table tr:nth-child(odd) td{
  background-color: #D2B48C; /* makes all the odd cells a diffrent color*/
  
}

.game {
  margin: auto;
  padding: 5px;
  text-align: center; /* center text */
}

img {
  width: 300px; /* resize images */
}

.color {
 	margin: auto;
  padding: 1px;
  border: 1px solid black;
}






