.logoWrapper {
    display: inline-block;
    transform: scale(var(--scaleX, 1), var(--scaleY, 1));
    transition: transform 0.1s ease-out;
    position: relative;
  }
  
  .logoWrapper svg {
    transform: translate(calc(var(--x, 0) * 5px), calc(var(--y, 0) * 5px));
    transition: transform 0.3s ease-out;
  }
  