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

html {
  font-size: 62.5%;
}

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

.full__img > *,
.full__img {
  width: 100%;
  display: block;
}

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

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

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

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

.hero {
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  text-align: center;
}
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  text-transform: uppercase;
}
@media (max-width: 50em) {
  .hero__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 37.5em) {
  .hero__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hero__logo {
  width: 6rem;
  padding-bottom: 1rem;
}

.love__line {
  background-color: #000;
  color: #fff;
  width: 90%;
  margin: 3rem auto;
  padding: 3rem 2rem;
  text-align: center;
}
.love__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 50em) {
  .love__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 37.5em) {
  .love__grid {
    grid-template-columns: 1fr;
  }
}
.love__grid-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cells {
  width: 90%;
  margin: 15rem auto;
}
.cells h2 {
  border-bottom: 1px solid #000;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}
.cells__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media (max-width: 56.25em) {
  .cells__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 37.5em) {
  .cells__grid {
    grid-template-columns: 1fr;
  }
}
.cells__grid-cell img {
  width: 5rem;
}
.cells__grid-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

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