.truc { 
    transform: translateZ(0);
    position: absolute; 
    transition: all 200ms ease-out; 
    border-radius: 100%;
    cursor: pointer;
}


.truc:hover {
    opacity: 1 !important;  
    transform: scale(1.20); 
}


.truc.clicked {
    transform: scale(2) !important;
    transition: transform 300ms ease-out;
}

.center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  position: fixed;
  inset: 0; 
  
  pointer-events: none;
}

.center-wrapper * {
  pointer-events: auto;
}
