.hero-section {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  color: white;

  h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

.hero-overlay {
  background: linear-gradient(rgba(26, 54, 43, 0.4), rgba(26, 54, 43, 0.2));
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 4rem;
  }

  .hero-overlay {
    padding: 0 10%;
  }
}
