/* Start custom CSS for html, class: .leales-element-ce96560 */<div class="bubble"></div>

<style>
.bubble {
  width: 80px; height: 80px;
  background-image: url("yourimage.png");
  background-size: cover;
  border-radius: 50%;
  position: absolute;
  bottom: -100px;
  animation: floatUp 12s infinite ease-in-out;
}
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-800px) scale(1.2); opacity: 0; }
}
</style>/* End custom CSS */