.container_ {
  box-sizing: border-box;
}

/* Float four columns side by side */
.column {
  float: left;
  width: 23%;
  margin-left: 20px;
  max-width: 400px;
  margin-bottom: 40px;
}

/* Remove extra left and right margins, due to padding in columns */
.row {
  margin-left: 40px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the counter cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
  padding: 20px;
  text-align: center;
  background-color: #f1f1f1;
  height: 30px;
}

/* Style the counter cards */
.card:hover{
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.7); /* this adds the "card" effect */
  padding: 20px;
  text-align: center;
  background-color: #fff;
}

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
