.hero-container {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  max-height: 80vh;
  aspect-ratio: 3 / 2;
  margin-top: 52px;
}

.hero-content-container {
  display: grid;
  gap: 1rem;
  font-size: 0.5em;
}

.hero-content-container p {
  font-weight: 500;
}

.header-background {
  background: rgba(255, 255, 255, 0.514);
  padding: 0.5rem;
}

@media screen and (min-width: 230px) {
  .hero-content-container {
    font-size: 1em;
  }
}

@media screen and (min-width: 330px) {
  .hero-content-container {
    font-size: 1.5em;
  }
}
@media screen and (min-width: 600px) {
  .hero-content-container {
    font-size: 2em;
  }
}

@media screen and (min-width: 900px) {
  .hero-content-container {
    font-size: 3em;
  }
}
