.home-hero {
  box-sizing: border-box;
  margin: 0px auto;
  width: 100%;
  gap: 40px 0px;
  grid-column: 1/-1;
  padding-top: 100px;
  padding-bottom: 6.25vw;
  background-color: var(--theme-ui-colors-headerOpaqueAlt);
  color: var(--theme-ui-colors-bitter);
  position: relative;
  z-index: 1;
  transition-property: color;
  transition-duration: 0.4s;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
}
.home-hero h1, .home-hero h2 {
  font-size: 19px;
  font-family: "Konsole Expanded", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
  display: block;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  margin: 0px;
  text-align: center;
  color: currentColor;
}
@media screen and (min-width: 768px) {
  .home-hero h1, .home-hero h2 {
    font-size: 4vw;
  }
}
@media screen and (min-width: 1024px) {
  .home-hero h1, .home-hero h2 {
    font-size: 92px;
  }
}