* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.full-img {
  width: 100%;
}

.primary-heading {
  color: #d84127;
  font-size: 4rem;
  font-weight: 700;
}

.basic-text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  align-items: center;
}

.grid-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
}

@media (max-width: 992px) {
  html {
    font-size: 80%;
  }
}

@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .grid-text {
    padding: 3rem 0;
  }

  .move-one {
    grid-area: 1 / 1 / 2 / 2;
  }

  .move-two {
    grid-area: 5 / 1 / 6 / 2;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 70%;
  }
}
