/* CSS Document */

.row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	flex-direction: row;
	max-height: 100%;
}
	.column {
	max-width: 100%;
}
	.column img {
	vertical-align: middle;
	margin-right: -4px;
}


/* Create two equal columns that sits next to each other */


/* Scale images to 50% of screen width */
	.column {
	flex: 100%;
}
	
	.column img {
	min-width: 100%;
}

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



/* Responsive layout - makes a four column-layout instead of two columns */
@media screen and (min-width:630px){
  .column {
    flex: 33.333%;
  }
  .column img {
	min-width: 33.333%;
}
}


/* Responsive layout - makes a four column-layout instead of two columns */
@media screen and (min-width:840px){
	.column {
	flex: 25%;
}

  .column img {
	min-width: 25%;
}
}


/* Responsive layout - makes a four column-layout instead of two columns */
@media screen and (min-width:1050px){
  .column {
	flex: 20%;
  }
  .column img {
	min-width: 20%;
}
}

@media screen and (min-width:1260px){
  .column {
	flex: 16.666%;
  }
  .column img {
	min-width: 16.666%;
}
}



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