/* Algemene stijl */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}


header {
  background-image: url("ontstijging.jpg");
  background-size: cover;   /* vult de hele header */
  background-position: center;
  
  
  
  color: pink;             /* tekst beter leesbaar */
  padding: 60px 20px;
  text-align: center;
}

header nav a {
  color: #FFC0CB;
  text-decoration: none;
  margin: 0 30px;
}

header nav a:hover {
  text-decoration: underline;
}

/* Secties */
main {
  padding: 20px;
  max-width: 800px;
  margin: auto;
  background: #fff;
  border-radius: 8px;
}

.button-container {
  display: flex;
  flex-direction: column;  /* onder elkaar */
  align-items: center;     /* horizontaal centreren */
  gap: 15px;               /* ruimte tussen de knoppen */
  margin-top: 30px;        /* optioneel wat extra ruimte boven */
}

.game-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  text-align: center;
  width: 300px; /* vaste breedte zodat ze netjes gelijk zijn */
}

.game-button:hover {
  background-color: #0056b3;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background: #333;
  color: #fff;
  margin-top: 20px;
}

.footer-logo {
  height: 40px;       /* pas aan naar wens */
  width: auto;
  vertical-align: middle;
  margin-left: 8px;   /* ruimte tussen tekst en logo */
}





