body{background-color: rgb(207, 180, 28);}
/*the above code is for the main screen background color.*/
#gametable{
	background-color:black;
	border-collapse: separate;
	border-spacing:20px;
}
#gametable td{
   background-color: white;
   border: 2px double #bf920b;
   width:50px;
   height:50px;
   text-align:center;
}

#gametable td:hover{
   opacity:0.75;
   cursor: pointer;
}
/*These are cardback and cardfront images that will be seen in the game. */
.cardback   { background-image: url("../img/cardback.png")   ; background-size:100% ;}
.oneup      { background-image: url("../img/1up.png")        ; background-size:100% ;}
.coin10     { background-image: url("../img/coin10.png")     ; background-size:100% ;}
.coin20     { background-image: url("../img/coin20.png")     ; background-size:100% ;}
.fireflower { background-image: url("../img/fireflower.png") ; background-size:100% ;}
.mushroom   { background-image: url("../img/mushroom.png")   ; background-size:100% ;}
.star       { background-image: url("../img/star.png")       ; background-size:100% ;}