* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column-1 {
  float: left;
  width: 40%;
  padding: 10px;
  /*height: 300px;  Should be removed. Only for demonstration */
}

.column-2 {
  float: left;
  width: 60%;
  padding: 10px;
  padding-top:60px;
  /*height: 300px;  Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* 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-1,.column-2 {
    display: block;
    width: 100%;
  }

  .column-2{  padding-top:0;}
}