:root {
  --backgroundColor: linen;
  --textColor: #333;
}

html,
body {
  background-color: var(--backgroundColor);
  color: var(--textColor);
  font-family: --fontFamily;
  margin: 1%;
  padding: 0;
}

ul, ol, dl, dt, dd {
  display: block;
  padding: 0;
  margin: 0;
  display: list-item;
  margin-left: 2em;
}

table,
th,
td {
  border: thin solid;
  width: 100%;
  border-collapse: collapse;
  font-size: 90.01%;
  table-layout: fixed;
}

h2 {
  font-size: 1.5em;
  background-color: #eee;
  border-radius: .5em;
  border: thin solid red;
  text-align: center;
}

h3 {
  margin-bottom: 1pt;
}

.inline {
  display: inline;
}

.hidden {
 display: none;
}

.button {
  text-decoration: none;
  border-radius: .25em;
  border: thin solid blue;
  background-color: lightgrey;
  color: black;
  font-size: 1.5em;
  padding: 0.5em;
  margin-right: .25em;
}

.button:hover {
  background-color: grey;
}
