.hero-art {
  background-image: url("../assets/hero-background.webp");
  background-position: center 58%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-character {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: min(58vw, 920px);
  height: 90%;
  overflow: hidden;
  pointer-events: none;
}

.hero-character img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: 0;
  object-fit: contain;
}

@media (max-width: 760px) {
  .hero-art {
    background-position: center 54%;
  }

  .hero-character {
    right: 0;
    width: 100%;
    top: 14%;
    bottom: auto;
    height: 70%;
  }
}
