* {
  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%;
  }
}

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

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

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

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

.hero {
  width: 80%;
  margin: 10rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.hero img {
  width: 100%;
  margin-top: 2rem;
  border-radius: 20px;
  display: block;
}

.elegant__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 80%;
  margin: 0 auto 3rem;
  text-align: center;
}
.elegant img {
  width: 100%;
  display: block;
}

.double {
  background-color: #f7f7f7;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 5rem auto;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 56.25em) {
  .double {
    grid-template-columns: 1fr;
  }
}
.double__text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}
@media (max-width: 56.25em) {
  .double__text {
    padding: 5rem;
  }
}
.double img {
  display: block;
  width: 100%;
}

.triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin: 0 auto 5rem;
  gap: 2rem;
}
@media (max-width: 56.25em) {
  .triple {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 37.5em) {
  .triple {
    grid-template-columns: 1fr;
  }
}
.triple__cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.triple__cell img {
  width: 100%;
  height: 30rem;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 56.25em) {
  .triple__cell img {
    height: 50rem;
  }
}

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