/*
Project: 15-16_27
Activity: Unit 1 - Nuemracy Tasks - Exponential Growth
Author: Richy Thomas
*/

table {
  background: black;
  border-collapse: collapse;
  border: 1px solid #000;
  height: 200px;
  margin: 0 auto;
  width: 200px;
  color: #FFF;
}

td {
  height: 12.5%;
  width: 12.5%;
  cursor: pointer;
  text-align: right;
  font-size: 12px;
  vertical-align: top;
  padding-right: 5px;
}

tr:nth-child(odd) td:nth-child(even), tr:nth-child(even) td:nth-child(odd) {
  background: #FFF;
  color: #000;
}



td.correct, td.correct:hover  {
  background: #64DD17!important;
}

td.incorrect, td.incorrect:hover {
  background: #D50000!important;
}

td:hover {
  background: rgba(255,167,38,1)!important;
}

.img-border {
  border: 1px solid #000;
  margin-bottom: 20px;
}

.img-center {
  margin-left: auto;
  margin-right: auto;
}


/* Tablet */
@media(min-width: 768px){

  table {
    height: 636px;
    margin-top: 20px;
    width: 636px;
  }

}

/* Desktop */
@media(min-width:992px){

  table {
    height: 485px;
    margin-top: 0;
    width: 485px;
  }

}

/* Large Desktop */
@media(min-width:1200px){

  table {
    height: 600px;
    width: 600px;
  }

}

/* Print */
@media print {


}