h1 {
	font-size: 16px;
}
.grid-row {
	display: flex;
	display: -ms-flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	align-items: center;
	-webkit-align-items: center;
	justify-content: space-between;
}

/* Create four equal columns that sits next to each other */
.grid-col {
  flex: 0%;
  padding: 0 4px;
}

.grid-col img {
  /*margin-top: 8px;
  vertical-align: middle;*/
  max-width: 100px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
/*@media screen and (max-width: 800px) {
  .grid-col {
    flex: 50%;
    max-width: 50%;
  }
}*/

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