/* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
  float: left;
  width: 20%;
  padding: 5px;
  margin: 15px;
   text-align: center;
   background-color: darksalmon;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}

