/* Create four equal columns that floats next to each other */
* {
  box-sizing: border-box;
}

.column {
  float: left;
  width: 25%;
  padding: 1px;

}

.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .column {
    width: 25%;
    font-size:10px;
    padding: 1px;
  }
}

.box a {
  text-decoration: none;
}