* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: 0 auto;
  padding: 3rem 0;
  gap: 1rem;
}

.full-img {
  width: 100%;
}

.grid-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .move-one {
    grid-area: 3 / 1 / 4 / 2;
  }

  .move-two {
    grid-area: 7 / 1 / 8 / 2;
  }

  .move-three {
    grid-area: 11 / 1 / 12 / 2;
  }

  .move-four {
    grid-area: 15 / 1 / 16 / 2;
  }
}
