#hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  background-image: url("data:image/svg+xml,%3Csvg width='700' height='700' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.07' fill-rule='evenodd'/%3E%3C/svg%3E");
}

#hero article {
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 1.5rem;
}

h1 {
  font-size: 3.5rem;
  color: var(--green);
  text-align: center;
  margin: 0;
}

h1 span {
  font-family: Georgia, "Times New Roman", Times, serif;
}

#hero-text {
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 400;
  text-align: center;
  padding-left: 30vw;
  padding-right: 30vw;
  margin: 0;
}

#svg-bg {
  top: -40rem;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  fill: var(--green);
  transform: scale(0.5);
  opacity: 0.25;
}

#hero-cta {
  background-color: var(--green);
  border: none;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shad);
  margin-top: 1rem;
  color: white;
  cursor: pointer;
}
