.absolute-anim-obj {
    position: absolute;
}

.lower_pos {
    bottom:5%;
    left: calc(50% - 3vw);
}

@keyframes down-anim {
    0% {
        bottom: 7%;
    }
    100% {
        bottom: 5%;
    }
}

.down-anim-obj {
    animation-name: down-anim;
    animation-duration: 0.5s;
    animation-timing-function:ease-out;
    animation-iteration-count:infinite;

    color:white;
    z-index: 4;
}

  .une-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .une-circle {
    position: absolute;
    width: 36vw;
    height: 36vw;
    border-radius: 48% 69% 56% 53% / 47% 73% 43% 49%;
    animation: une-move 8s linear infinite;
    overflow: hidden;
    background-size: cover;
    background-position: 0% center;
  }
  
  
  @keyframes une-move {
    50% {
      border-radius: 80% 20% 59% 41% / 72% 21% 79% 28%;
    }
  
    75% {
      border-radius: 100% 69% 100% 83% / 68% 99% 53% 93%;
    }
  }

  .moving-dot {
      position: absolute;
      left:7.5vw;
      width: 1vw;
      top:3vw;
  }

