body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: black;
  padding: 5px;
}

* {
  box-sizing: border-box;
}

header {
  background-color: black;
  padding: 5px;
  text-align: center;
  font-size: 30px;
  color: white;
  font-family: 'Dancing Script';
}

.hover-container {
  position: relative;
  display: none;
  text-align: center;
}

.header1:hover .hover-container {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.header1 {
  height: 200px;
  background-image: url("images/img_1_blank.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header2 {
  height: 200px;
  background-image: url("images/img_2_blank.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header3 {
  height: 200px;
  background-image: url("images/img_3_blank.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

section {
  display: -webkit-flex;
  display: flex;
}

nav {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #e0c89b;
  padding: 10px;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

article {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
  background-color: #b39f7a;
  padding: 10px;
}

footer {
  background-color: #78160d;
  padding: 5px;
  text-align: left;
  color: white;
  font-size: 12px;
}

button {
  background-color: #78160d;
  padding: 5px;
  width: 100px;
  color: white;
}

.wider-column {
  width: 300px;
}

.wider-column2 {
  width: 150px;
}

.custom-link {
  color: white;
  text-decoration: none;
  /* Als je de onderstreping wilt verwijderen */
}

.custom-link:hover {
  color: lightblue;
  /* Kleur verandert wanneer de gebruiker er met de muis overheen gaat */
}

#disclaimer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 18px;
  padding: 20px;
  box-sizing: border-box;
  z-index: 9999;
  overflow-y: auto; /* Add scroll for smaller screens */
}

#close-disclaimer {
  display: block;
  margin-top: 15px;
  text-align: center;
}

@font-face {
  font-family: 'Dancing Script';
  src: url("Fonts/DancingScript-VariableFont_wght.ttf") format('truetype');
}

@media screen and (max-width: 767px) {
  header {
    font-size: 20px;
  }

  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  #disclaimer-content {
    max-width: 90%;
    margin: 10% auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
  }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
  header {
    font-size: 30px;
  }

  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (min-width: 1200px) {
  header {
    font-size: 40px;
  }

  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}