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

html {
  font-size: 62.5%;
}

body {
  font-family: sans-serif;
}

iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/5;
}

img,
video {
  display: block;
}

.full-img {
  width: 100%;
}

.small-img {
  display: none;
}

@media (max-width: 768px) {
  .small-img {
    display: block;
  }

  .big-img {
    display: none;
  }
}

.primary-heading {
  font-size: 4rem;
}

.secondary-heading {
  font-size: 3.2rem;
  font-weight: 400;
}

.basic-text {
  font-size: 2rem;
}

.add-bold {
  font-weight: 600;
}

.hero-text {
  width: 90%;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 90%;
  margin: 5rem auto;
  gap: 2rem;
}

.hero-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.hero-cell .basic-text {
  font-size: 1.6rem;
}

.hero-logo {
  width: 6rem;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.love-hero {
  background-color: black;
  color: white;
  width: 90%;
  margin: 10rem auto;
  padding: 3rem;
  text-align: center;
}

.love-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  margin: 0 auto;
  gap: 2rem;
}

.love-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feat-grid {
  width: 90%;
  margin: 5rem auto;
}

.feat-grid h3 {
  border-bottom: 1px solid black;
}

.grid-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin: 5rem 0;
}

.grid-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.grid-logo {
  width: 5rem;
}

.grid-cell .basic-text {
  font-size: 1.7rem;
}

@media (max-width: 992px) {
  .love-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .love-grid {
    grid-template-columns: 1fr;
  }

  .grid-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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