/* ========== Algemene reset / basisstijl ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html, body {
  background: url('../images/Marble.jpg') fixed;
  font-family: Arial, sans-serif;
  text-align: center; }

h6 {
  font-size: 1.4em;
  margin-bottom: 40px;
  text-decoration: underline; }

.pMain {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: auto;
  height: 100%;
  text-align: center; }

table {
  width: 88%;
  margin: auto;
  border-collapse: collapse; }

th {
  color: #FF0000;
  font-family: 'Cinzel', serif;
  padding: 8px;
  border-bottom: 2px solid #aaa; }

td {
  padding: 10px 5px;
  border-bottom: 1px solid #ddd; }

a {
  color: black;
  text-decoration: none; }

a:hover {
  text-decoration: underline;
  color: darkred; }