/*kolommen gelijke hoogte houden door in ëën blok te doen */
.column-container {
  display: table;
  width: 100%;
}

.column {
  float: left;
  width: 50%;
}
.left {
  width: 35%;
}

.right {
  width: 65%;
}
/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  padding: 5px;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}