.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
  margin: 30px 10%;
  min-height: 50vh;
}

.header-container .image-section img {
  max-width: 100%;
  box-shadow: 4px 4px 8px 3px var(--drop-shadow);
  border-radius: 8px;
  max-height: 50vh;
}

@media screen and (max-width: 768px) {
  .header-container {
    margin: 15px 10%;
    flex-direction: column-reverse;
  }
}
