
* {
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 4px,0,4px,0;
}

/* Create four equal columns that sits next to each other */
.column {
  text-align: center;
  flex: 50%;
  max-width: 50%;
  padding: 4px 4px 4px 4px;
}

.column img {
  margin-top: 8px;
  margin-bottom: 8px;
  vertical-align: middle;
}

.description {
  text-align: left;
}

@media (max-width: 900px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 700px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

