body {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

img {
    max-width: 30vw;
}

.no-caret {
  caret-color: transparent;
  outline: none;
  /* prevents iOS/Android showing any caret at all */
  pointer-events: none;           /* ← if you don't want any interaction */
  user-select: none;             /* prevents text selection */
  -webkit-user-select: none;
}