.effect-area {

  position: relative;
  display: inline-block;
}
html, body {
  touch-action: manipulation;
  background-color: #ffffff;
}
body{
    margin-right: 0px;
}
.effect-img {
  position: absolute;
  left: 195%;
  bottom: -20px;
  transform: translate(-200%, 0);
  pointer-events: none;
  animation: floatUp 1s linear forwards;
}

@keyframes floatUp {
  0% { transform: translate(-200%, -25%); }
  100% { transform: translate(-200%, -76px); }
}
.apng-button {
  cursor: pointer;
}
