* {
    box-sizing: border-box;
  }
  
  .galleryContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items:flex-start;
    align-content: stretch;
    justify-content: flex-start;
  }
  
  /* Create three equal columns that sits next to each other */
  .galleryColumn {
    margin: 0px;
    flex: 1;

  }

  img {
    width: 18rem;
  }