.ootdRow {
  display: flex;
  flex-wrap: wrap;
  padding: none;
}

/* Create three equal columns that sits next to each other */
.ootdColumn {
  flex: 30%;
  max-width: 50%;
  padding: 0 0.5em 0;
}

.ootdColumn img {
  margin: none;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a one column-layout instead of three columns */
@media screen and (max-width: 550px) {
  .ootdColumn {
    flex: 100%;
    max-width: 100%;
  }
}

/* Responsive layout - makes the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .ootdColumn {
    flex: 100%;
    max-width: 100%;
    margin-left:auto;
    margin-right:auto;
  }
}
