/* 
Generic Styling, for Desktops/Laptops 
border-collapse: collapse; 
**/
@media only screen and (max-width: 600px) {

    img {width: 100%; height: 100%; margin: 0; padding; 0;}
}

html {
   margin: 0px;
   height: 100%;
   width: 100%;
}

body {
   margin: 0px;
   min-height: 100%;
   width: 100%;
}

table { 
  width: 400px; 
  
}


/* Zebra striping */
tr:nth-of-type(odd) { 
  background: #eee; 
}
th { 
  background: #333; 
  color: white; 
  font-weight: bold; 
  text-align: center; 
}
td, th { 
  padding: 1px; 
  border: 1px solid #ccc; 
  text-align: left;
  font-size:large;
}
