<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
  --delay: 0.31s;
}

body {
  background: #acd5ee;
}

.text {
  margin: 2rem 4rem;
  max-width: 50vw;
}

h1 {
  font-size: 3rem;
  color: #0667d2;
}

.Hero_image {
  display: block;
  position: absolute;
  width: 80%;
  max-height: 650px;
  right: 0;
  bottom: -0.3rem;
  z-index: 1;
  overflow: hidden;
}

.Hero_svg {
  height: 100%;
  width: 100%;
}

.Hero--subpage .Hero_image {
  bottom: 0;
}

.Hero_svg {
  height: 100%;
  width: 100%;
}

@supports not (-ms-high-contrast: none) {
  /* Non-IE styles here */
  .Hero_path {
    stroke-dasharray: 1700;
    stroke-dashoffset: 1700;
    -webkit-animation: drawHero 2.5s ease-in-out both;
    animation: drawHero 2.5s ease-in-out both;
  }

  .Hero_path:nth-of-type(2) {
    -webkit-animation-delay: var(--delay);
    animation-delay: var(--delay);
  }

  @-webkit-keyframes drawHero {
    to {
      stroke-dashoffset: 0;
    }
  }
  @keyframes drawHero {
    to {
      stroke-dashoffset: 0;
    }
  }
}</pre></body></html>