body {
    background-color: rgb(238, 238, 238)
}
.tekst-balk-landen {
    display: flex;
    justify-content: center;
    padding: 5px;
    color: white;
    background-color: green;
    margin: 50px;
}
.producten {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: auto;
  background-color: white;
  border: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.producten h5, p {
  padding: 10px;
} 
.producten a {
  display: flex;
  justify-content: center;
}
.producten:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.producten img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.col-md-4 {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  }
.knop {
  background-color: rgb(31, 167, 31);
  color: #000000;
  padding: 12px 0;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 70%;
  margin: 20px auto 0 auto;
  line-height: normal;
}
.knop:hover {
  background-color: rgb(156, 235, 144);
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0);
  z-index: 1;
}
