/*One style to rule them all - CSS by Giovanni Cappelli*/

/*page title*/
.header {
  font-size: 35px;
  text-shadow: 0 0 10px #222;
  text-align: center;
  border-style: outset;
  background-color:rgb(192,192,192);
  margin-left: 100px;
  margin-right: 100px;
}

/* subdividers */
.SubDiv {
  font-size: 12px;
  text-align: center;
  border-style: outset;
  background-color:rgba(192,192,192,0.7); /*last number sets opacity*/
  margin-left: 100px;
  margin-right: 100px;
}

/* buttons */
.nav {
 font-size: 12px;
 text-align: center;
 border-style: outset;
 background-color:rgba(192,192,192,0.7);
 width:100px;
 margin:auto;
}

/* table */
table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 3px solid #dddddd;
  text-align: center;
}
