.sobre {
  height: 43rem;
  width: 100%;
  background-color: var(--black);
}

.sobre>div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sobre>div>img {
  width: 328px;
  height: 219px;
  transform: translateY(-5rem);
}

.sobre>div h2,
.sobre>div p {
  color: #fff;
}

.sobre>div p {
  line-height: 2ch;
  text-align: justify;
  padding: 2rem 0;
}

@media screen and (min-width:800px) {
  .sobre {
    width: 75%;
    height: 30rem;
  }

  .sobre>div {
    display: grid;
    grid-template-columns: 1fr 100px;
    grid-template-rows: 100px 1fr;
    column-gap: 3rem;
    align-items: center;
    align-content: center;
    justify-content: center;
    height: 100%;
  }

  .sobre>div>img {
    grid-column: 2;
    grid-row: 1/3;
    transform: translateY(0);
    width: 350px;
    height: auto;
  }

  .sobre>div h2 {
    grid-column: 1;
  }

  .sobre>div p {
    grid-column: 1;
    align-self: flex-start;
    line-height: 2.5ch;
  }
}


@media screen and (min-width:1100px) {
  .sobre>div>img {
    width: 450px;
  }
}