* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media (max-width: 31.25em) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Poppins", sans-serif;
}

.full-img,
.full-img > * {
  width: 100%;
  display: block;
}

.primary-heading {
  font-size: 3.2rem;
  font-weight: 600;
}

.secondary-heading {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
}

.tertiary-heading {
  font-size: 1.8rem;
  font-weight: 600;
}

.basic-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.hero {
  background-color: #111111;
  color: #fff;
}

.hero-text {
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: #fff;
  align-items: center;
}

.grid-text {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 50em) {
  .grid {
    grid-template-columns: 1fr;
  }

  .grid-text {
    grid-row: 2/3;
    padding: 5rem 0;
  }
}

.grid1 {
  background-color: #1a1a1a;
}

.grid2 {
  background-color: #111;
}
