body {
  width: 100vw;
  margin: 0;
  background: #111;
  color: #fff;
  font-family: sans-serif;
}
#c {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 12px;
}
img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
#v {
  position: fixed;
  inset: 0;
  background: #000c;
  display: none;
  align-items: center;
  justify-content: center;
}
#v img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
}