@charset "utf-8";

* {
  box-sizing: border-box;
}

.column {
	float: left;
	width: 100%;
	padding: 5px;
	margin-top: -16px;
	margin-bottom: -16px;
}

/* 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: 500px) {
  .column {
    width: 100%;
  }
}
