.intro {
  display: flex;
  gap: 2rem;
  align-items: center;
  & .portrait {
    width: 50%;
  }
  & .text {
    width: 50%;
  }
  @media (max-width: 1000px) {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin: 2rem 0;
    & .portrait {
      width: 100%;
    }
    & .text {
      width: 100%;
    }
  }
  & h1 {
    color: var(--green);
  }
}
