.about-us {
  display: flex;
  width: 100%;
  padding: 1em;
  justify-content: space-between;
  align-items: center;
  gap: .5em;
}

.about-us .text-container {
  max-width: 800px;
  box-shadow: var(--boxShadow);
  border-radius: 10px;
  padding: 1rem;
}

.about-us .title {
  color: var(--themePurple);
  font-size: 1.6rem;
  text-align: center;
}

.about-us p {
  font-size: 1rem;
  padding: .25em 0;
  line-height: 1.2em;
}

.about-us img {
  width: 350px;
  max-width: 90vw;
  border: 3px solid var(--themePurple);
  border-radius: 5px;
}

@media screen and (max-width: 850px) {
  .about-us {
    flex-direction: column;
    justify-content: center;
  }
}