/*column.css*/
.column {
float: left;
width: 30%;
padding: 20px;
box-sizing: border-box;
text-align: center;
}

/* 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 on smaller screens */
@media screen and (max-width:100px) {
.column {
width: 100px;
display: block;
}
}
