.home-body {
  height: 100vh;
  overflow: hidden;
}

.hero {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  touch-action: none;
}

.hero.dragging {
  cursor: grabbing;
}

.hero img {
  max-width: 48vw;
  max-height: 48vh;
  width: auto;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.dragging img {
  transition: none;
}

@media (max-width: 640px) {
  .hero img {
    max-width: 57vw;
    max-height: 42vh;
  }
}
