body {
  background-color: #FFC481;
  font-family: 'Saira', sans-serif;
  text-align: center;
  color: #2E2E2E;
  padding-top: 20px;
}

h1 {
  font-size: 80px;
}

.subtitel {
  font-size: 40px;
}

.content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.kolom {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lijn {
  background-color: #EF473A;
  width: 40px;
  height: 500px;
  border-radius: 10px;
}

.foto {
  width: 300px;
  border-radius: 10px;
  width: 280px;
  height: 180px;
  object-fit: cover;
  transition: all .2s;
}

.onder {
  display: flex;
  justify-content: space-between;
  margin: 0px 400px;
}

.foto:hover {
  transform: scale(1.2);
}

.fototekst {
  font-size: 20px;
  max-width: 280px;
  margin: 10px auto;
  line-height: 1.3;
}

.kolom > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 350px;
  box-sizing: border-box;
}