* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: sans-serif;
}

.section-hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 90%;
  margin: 5rem auto;
  background-color: #ddd;
}

.full-img {
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.basic-text {
  font-size: 1rem;
}

.add-bold {
  font-weight: 600;
}

@media (max-width: 900px) {
  .section-hero {
    grid-template-columns: 1fr;
  }

  .hero-text {
    padding: 2rem;
  }
}

iframe {
  aspect-ratio: 16/9;
  width: 80%;
  margin: 0 auto;
  display: block;
  margin-bottom: 5rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  margin: 5rem auto;
  gap: 1rem;
}

.secondary-heading {
  font-size: 1.3rem;
  font-weight: 500;
}

.grid-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .section-grid {
    grid-template-columns: 1fr;
  }
}
