/* a minimalist set of CSS resets */

/* default to border-box */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* adjust typography defaults */
body {
  margin: 1rem;
  font-family: sans-serif;
  line-height: 1.5;
}

/* Table */

table {
  height: 40%;
  left: 10%;
  margin: 20px auto;
  overflow-y: scroll;
  position: static;
  width: 100%;
}

caption{
  text-transform: uppercase;
  font-weight: 600;
}

th {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 20px;
  text-align: left;
  width: 33.3333%;
}

td {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 20px;
  text-align: left;
  width: 33.3333%;
}

tr {
  background: #f4f7f8;
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 5px;
}

tfoot{
  color: #a9a9a9;
}

thead th {
  background: #88CCF1;
  color: #FFFFFF;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 2px;
  text-transform: uppercase;
}

tfoot th {
  font-style: italic;
  color: #a9a9a9;
}

