.lib-hero {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}
.lib-hero-image img {
  display: var(--hero-image-show, none);
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: var(--hero-image-opacity);
}
.lib-hero-solid {
  display: var(--hero-solid-show, none);
  background-color: var(--hero-solid-color);
  width: 100%;
  height: 100vh;
}
.lib-hero-main {
  position: absolute;
  top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  padding-top: 15vh;
  max-width: 900px;
  text-align: center;
  width: 90%;
}
.lib-hero-text h1 {
  font-size: 3.25rem;
  margin: 0px;
}
.lib-hero-text p {
  font-size: 1.25rem;
  color: var(--hero-text-less);
}
.lib-hero-text-highlight {
  color: var(--color-off-white);
}
.lib-hero-button {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: row;
  gap: 1rem;
  margin-top: 0.75rem;
}
.lib-button {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .lib-hero-text h1 {
    font-size: 2.5rem;
  }
  .lib-hero-text p {
    font-size: 1.2rem;
  }
}
