 body {
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  button {
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    transition: transform 0.1s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
    outline: none;
  }

  button img {
    width: 120px; /* размер картинки */
    transition: transform 0.1s ease;
  }

  button:active img {
    transform: scale(0.9); /* уменьшение при нажатии */
  }