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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
  overflow: hidden;
}

a {
  display: inline-block;
  cursor: pointer;
  transition: transform 180ms ease, opacity 300ms ease;
  opacity: 0.92;
  transform: translateY(-10vh);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 1;
  }
}

img {
  width: clamp(110px, 18vw, 220px);
  max-width: 60vw;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
