/**
 * IMPORTANT: Most of these are exposed as CSS variables in main.scss
 */
/**
 * Variables for spacing (like margin and padding) and sizing (like breakpoints
 * and content width)
 */
.header {
  position: relative;
  width: calc(100vw - 8px);
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  height: 400px;
}
.header img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 2000px !important;
  height: 100%;
  object-fit: cover;
}
.header .text {
  position: relative;
  margin: 200px auto 0 auto;
  text-shadow: 2px 2px black;
  padding: 15px 25px 15px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  max-width: 800px;
  z-index: 1;
  font-size: 1.25rem;
  color: #FFFFFF;
}
.header .text .line-2 {
  font-size: 0.825em;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  .header {
    width: 100vw;
    height: auto;
  }
  .header img {
    position: relative;
    height: 200px;
  }
  .header .text {
    margin-top: 25px;
    max-width: 90%;
    padding: 0;
    background: none;
    font-size: 1.125rem;
  }
  .header .text .line-2 {
    font-size: 0.6125em;
  }
}

.intro-note {
  font-size: 0.8125em;
}

/*# sourceMappingURL=ai-shovelware.css.map */