html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.wrapper {
  width: min(600px, 100%);
  aspect-ratio: 2 / 1;
  position: relative;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  object-fit: contain;
  user-select: none;
  -webkit-user-select: none;
}

.top {
  z-index: 2;
}

.bottom {
  z-index: 1;
}
