* {
  box-sizing: border-box;
}

/* Create two unequal columns that floats next to each other */
 
.column {
  float: left;
  padding: 10px;
  
}

.left {
	width: 40%;
	text-align: right;
	padding-right: 15px;
}

.right {
	width: 55%;
	float: right;
	text-align: left;
	padding-left: 15px;
}

/* 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 {
    width: 100%;
  }
}
