main {
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto 1fr;
  background-color: var(--background-main);
}

img {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 80%;
  align-self: center;
  justify-self: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: transform .3s ease;
}

img:hover {
  transform: scale(1.03);
}

h2 {
  grid-column: 2;
  grid-row: 1;
}

p {
  grid-column: 2;
  grid-row: 2;
  color: var(--text-color);
}

@media (max-width: 768px) {
  main {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  main img {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
  }

  h2 {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
    margin-top: 20px;
  }

  p {
    grid-column: 1;
    grid-row: 3;
    text-align: center;
  }
}
