.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 50%;
  max-width: 50%;
  padding: 0 25px;
}

.column img {
  margin-top: 8px;
  margin-bottom: 20px;
  margin-left: 15%;
  vertical-align: middle;
  width: 675px;
}

h5 {
		text-transform: uppercase;
		line-height: 2;
		color: #808080;
}

.h51 {
	color: #b3b300;
	font-family: Copperplate, Papyrus;
	font-size: 20px;
}

.homeText {
	max-width: 50%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1024px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
  
  .column img {
	max-width: 100%; 
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .homeText {
	max-width: 100%;  
  }
  
  .h51 {
	text-align: center;  
  }
  
  h5 {
	text-align: center;   
  }
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
  
  .column img {
	max-width: 100%;  
  }
  
  .homeText {
	max-width: 100%;  
  }
  
  .h51 {
	text-align: center;  
  }
  
  h5 {
	text-align: center;   
  }
}

/* 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%;
  }
  
  .column img {
	max-width: 100%;  
  }
 
  .homeText {
	max-width: 100%;  
  }
  
  .h51 {
	text-align: center;  
  }
  
  h5 {
	text-align: center;   
  }
}

