/* ENTIRE HERO CSS */

.hero {
  padding-block: 130px;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0px;
  max-width: 900px;
}

.hero-text {
  flex: 1 1 400px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 400;
}

.highlight {
  color: var(--blush);
  font-weight: 600;
  font-size: 4rem;
  letter-spacing: 0.2rem;
}

.emphasis {
  color: var(--blush);
  font-weight: 500;
  font-size: 2rem;
}

.hero-text p {
  margin-top: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-image {
  flex: 1 1 300px;
  text-align: center;
}

.hero-image img {
  max-width: 400px;
  border-radius: 300px;
  max-height: 400px;
}



@media (max-width: 759px) {
  .hero {
    padding-block: 20px;
  }

  .hero-image {
    margin-bottom: -70px;
  }
}