.image-container {
  background-color: white;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.featured-images-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 0.5em 0 0.5em;
}

.featured-image-30 {
  box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.3);
  object-fit: cover;
  margin-bottom: 1em;
}

.logo-container {
  padding: 0 1em 0 1em;
}

@media only screen and (min-width: 768px) {
  .home-section-container {
    flex-direction: row;
    justify-content: stretch;
  }

  .image-container {
    background-size: contain;
    height: 500px;
  }

  .logo-container {
    background-image: url(/img/heavenly-blooms-logo-1.png);
    padding: unset;
  }

  .hannah-container {
    background-image: url(/img/hannah-sitting-with-bouquet.jpg);
    background-size: cover !important; /* override from .image-container */
  }

  .featured-images-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: unset;
  }

  .featured-image-30 {
    width: 30%;
    margin-bottom: unset;
  }
}