* {
    box-sizing: border-box;
}

body { 
    background-color: #d8acff;
    background-size:cover;
    margin: 0;
    height: 100vh;
  width: 100vw;
  overflow: hidden;
  align-items: center;
}




.container{
    display:flex;
    width: auto;
    height:auto;
    justify-content: space-evenly;
    align-items: center;
}


.circle{
   
    width:100px;
    height:100px;
    border-radius:80%;
   animation: pulse 2s infinite alternate ease; 
   position:relative;
}



@keyframes pulse{
    0%{
       
        width: 50vw;
        height: 35vw;
        transform: scale(1);
    }

    100%{
       
        width:4vw;
        height:6vw;
        transform: scale(1.5)
    }
}
.square{

    width: 15vw;
    height:15vw;
    animation: spin 14s infinite linear;
    position:sticky;

}


@keyframes spin{
    0%{
transform:rotate(0);
    }


    100%{
transform: rotate(360deg);
    }
}



.mover {
width: 20vw;
height: 15vw;
position: fixed;
bottom: 0;
left:0;
animation: move 6s infinite linear ;
}

@keyframes move {
    0%{
transform:translateX(-15)
    }


    100%{
transform: translateX(100vw);
    }
}



.mover-shape{
    animation: grow 6s infinite;
    width: 15vw;
    height: 3vw;
    animation: grow 2s infinite alternate;
}

@keyframes grow{
    0%{
        transform: scale(1);
    }

    100%{
        transform: scale(2);
    }
}




.flower1{
    
    margin-left: auto;
    margin-right: auto;
position: relative;
animation:  1s infinite;
animation-timing-function: linear;
animation: move 6s infinite linear ;

}


@keyframes mymove {
    0%{
        transform:translateX(-15)
            }
        
        
            100%{
        transform: translateX(100vw);
            }
  }



  .pansy{
   animation: rotate 1.5s linear infinite;
   animation-timing-function: ease;
   width: 300px;
   left:100vw;
   top:100vh;
   

  }


  @keyframes rotate{

        from{
    transform:rotate(0);
        }
    
    
        to{
    transform: rotate(360deg);
        }
    }
  