 * {
  box-sizing: border-box;
}

.column {
  float: left;
  width: 50%;
  padding: 5px;
  border-radius: 2%;
  
}


/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1200px) {
  .column {
    width: 100%;
  }
}