* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #d1ecf1;
  font-family: Arial, sans-serif;
  text-align: center;
  padding-top: 60px;
}

img {
  height: 500px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(120, 120, 120, 0);
  z-index: 89;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.menu {
  list-style-type: none;
  display: flex;
}

.menu > li {
  position: relative;
}

.menu li a {
  display: block;
  color: rgb(0, 0, 0);
  padding: 14px 20px;
  text-decoration: none;
}

.menu li a:hover {
  background-color: #57575780;
}

.dropdown-content {
  position: absolute;
  background-color: #44444480;
  min-width: 160px;
  top: 100%;
  left: 0;
  z-index: 90;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.dropdown-content li a {
  color: white;
  padding: 12px 16px;
  text-align: left;
}

.dropdown-content li a:hover {
  background-color: #5757574b;
}

.dropdown-content.show {
  max-height: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    display: none;
    width: 100%;
    background-color: #333;
  }

  .menu.show {
    display: flex;
  }
}

.dropdown-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  padding: 10px;
}

.dropdown-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: rgb(0, 0, 0);
}

html {
  scroll-behavior: smooth;
}

table {
  width: 100%;
  background-color: #d4edda;
}

td {
  text-align: center;
  width: 50%;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 20px;
  background-color: #d4edda;
  padding-top: 40px;
  width: 40%;
  margin: 0px auto;
  margin-right: 20px;
}

textarea {
  height: 100px;
}


div.scrollmenu {
  background-color: rgb(255, 255, 200);
  overflow: auto;
  white-space: nowrap;
}

div.scrollmenu a {
  background-color: yellow;
  border-radius: 30px;
  display: inline-block;
  color: black;
  text-align: center;
  padding: 14px;
  margin: 10px;
  text-decoration: none;
}
div.scrollmenu a:hover {
  margin: 0px;
  font-size: xx-large;
}

ul {
  list-style-type: none;
}
.block {
  width: 300px;
  text-wrap: auto;
  vertical-align: top;
}
.lijsten {
  vertical-align: top;
}

#section1 {
  background-color: #d1ecf1;
}
#section2 {
  background-color: rgb(255, 255, 200);
}
#section3 {
  background-color: #d4edda;
}

#top {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: rgba(255, 255, 255, 0.5); /* Set a background color */
  color: black; /* Text color */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#top:hover {
  background-color: #55555580; /* Add a dark-grey background on hover */
  cursor: pointer; /* Add a mouse pointer on hover */
}
footer {
  background-color: white;
}