/*
Adapted from JavaScript, 9th edition
by Tom Negrino and Dori Smith
PeachPit Press, 2015
ISBN 978-0-321-99670-1
*/

body {
  background-color: white;
  color: black;
  font-size: 20px;
  font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}

h1, th {
  font-family: Georgia, "Times New Roman", Times, serif;
}

h1 {
  font-size: 28px;
}

table {
  border-collapse: collapse;
}

th, td {
  padding: 10px;
  border: 2px black solid;
  text-align: center;
  width: 20%;
}

#free, .pickedBG {
  background-color: LightCoral;
}