body {  /*Achtergrond website*/
  margin: 0;
  height: 100vh;
  background: linear-gradient(#07255f8e, rgba(37, 33, 73, 0.185)),
    url("../images/nijmegenHoog.jpg") center/cover no-repeat;
  background-attachment: scroll;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-position: center;
  transition: background-position 0.5s ease; /* Smooth transition */
}

h1 {  /*Styling h1*/
  text-align: center;
}
nav {
  border-style: dashed;
  color: #000000;
  background-color: rgb(50, 48, 75);
}
nav ul { /*Styling navigatie links*/
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15x;
  flex-wrap: wrap; /* Zorgt dat het menu op mobiel kan breken */
}
nav a { /* Style voor navigatie links binnen een <nav> element */
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 15px;
  display: block;
  text-align: center;
}
 a:hover {  /* Style wanner je met je muis op iets zit */
  background-color: rgb(38, 7, 68);
  font-size: 20px;
}
.nav li { /* Style voor list items binnen een navigatie bar */
  float: left;
  text-decoration: none;
}
footer { /*Styling footer*/
  background-color: rgb(50, 48, 75);
  color: #ffffff;
  text-align: center;
  padding: 1rem;

  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}


h3 {
  color: rgb(255, 255, 255);
  padding-left: 50px;
  padding-right: 100px;
}
h2{  /*Styling h2 text*/
  color: rgb(255, 255, 255);
  padding-left: 50px;
  padding-right: 300px;
  line-height: 1.2;
  max-width: 90ch;
  font-size: 20px;
}
h1 {
  color: rgb(255, 255, 255);
  padding-left: 50px;
  padding-right: 100px;
}
p {  /*Styling letters*/
  color: rgb(255, 255, 255);
  padding-left: 50px;
  padding-right: 300px;
  line-height: 1.2;
  max-width: 90ch;
  font-size: 17px;
}

button { /*Styling button*/
  background-color: #4CAF50; /* Mooie groene kleur */
  box-shadow: #ffffff;
  color: rgb(255, 255, 255);              /* Witte tekst */
  border: none;              /* Geen rand */
  padding: 10px 20px;        /* Ruimte in de knop */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 8px;        /* Afgeronde hoeken */
  cursor: pointer;           /* Handje bij hover */
  transition: background-color 0.3s; /* Soepele overgang bij hover */
}

button:hover { /*Styling voor de button*/
  background-color: #45a049; /* Donkergroener bij hover */
}


.questionbox {  /*Stling questionbox Nijemgen button*/
  background-color: #9189b1;
  padding: 20px;
  border-radius: 12px;

  /* ✅ Drop shadow for the box */
  box-shadow: 0 6px 14px rgba(255, 255, 255, 0.25);

  /* Optional centering */
  width: fit-content;
  margin: 20px auto;
  text-align: center;
}
label {   /*Styling tabel*/
  color: rgb(255, 255, 255);
}
iframe{ /*Styling tabel*/
  padding-left: 50px;
}
