* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.container {
  height: 100%;
  width: 100%;
}

img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

/* Toegevoegde stijl voor knoppen en disclaimer */
.floating-buttons {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 10;
}

.button {
  background-color: rgba(76, 175, 80, 0.85);
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: rgba(62, 142, 65, 0.95);
}

.disclaimer {
  font-size: 10px;
  color: lightgray;
  max-width: 240px;
  text-align: right;
}
