/*Master file, use general styles*/
.title1 {/*title container*/
  border:5px solid DarkGoldenRod;
  background-color:BlanchedAlmond;
  text-shadow:0 0 3px Black;
}
div {
  margin:20px;
  padding:10px;
}
body {
  background-color:Chocolate;
  margin:10px;
  text-align:center;
  font-family:Book Antiqua;
}
.tablecontain {/*container of main table*/
  background-color:Gold;
  padding:20px;
  margin:15px;
}
td {
  padding:5px;
  border:3px solid Black;
}
table {
  border-collapse:collapse;
}
#scorecardtable {/*main table*/
  background-color:red;
}
th {
  border:4px solid Black;
}
#invisible {/*text is ment to be written over*/
  font-style:italic;
  color:#666666;
  font-weight:lighter;
}
.piccontain {/*image container*/
  background-color:Chartreuse;
}
th:first-of-type {
  font-size:20px;
}
.chessinstruc {
  background-color:DarkOrange;
  border: 5px solid Brown;
}
.bold {
  font-weight:bold;
}
span::selection,p::selection,br::selection,th::selection,td::selection,h1::selection,img::selection {
  background-color:Green;
}