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

html {
  font-size: 62.5%;
  font-family: sans-serif;
}
@media only screen and (max-width: 43.75em) {
  html {
    font-size: 50%;
  }
}

body {
  background-color: #f0ece4;
}

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

.secondary-heading {
  font-size: 2.6rem;
  font-weight: 600;
}

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

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

.love {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  margin: 5rem auto;
  gap: 3rem;
}
@media (max-width: 50em) {
  .love {
    grid-template-columns: 1fr;
  }
}
.love .primary-heading {
  grid-column: 1/-1;
}
.love__cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.love__cell-img {
  width: 100%;
  border-radius: 13px;
}

.pocket {
  width: 90%;
  margin: 15rem auto;
}
.pocket__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  margin-bottom: 3rem;
}
.pocket img {
  width: 100%;
}

.flexi {
  width: 90%;
  margin: 15rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 50em) {
  .flexi {
    grid-template-columns: 1fr;
  }
}
.flexi__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 50em) {
  .flexi__text {
    grid-row: 1/2;
  }
}
.flexi img {
  width: 100%;
  border-radius: 13px;
}

/*# sourceMappingURL=Index.css.map */
