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

body {
  margin: 0 auto;        	 /* Horizontaal centreren */
  padding: 0;
  background: url('../images/Silver.jpg') repeat center center;
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;        /* Zorgt dat de inhoud onder elkaar staat */
  align-items: center;           /* Centreert alle children horizontaal */
  justify-content: flex-start;   /* Inhoud begint bovenaan */
  min-height: 100vh;             /* Optioneel: vult de hele hoogte */
  padding: 20px;
  gap: 20px;                     /* Ruimte tussen tabellen */
}

.links {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  text-decoration: none;
  color: #000;
}