
.bodyBackground{
    background-color: rgba(176, 203, 186, 0.2)
}


.contact div{
    border: 1px solid rgb(25, 79, 25);
}

.animatedBox div{
    position: absolute;
    width: 60px;
    height: 60px;
}    

.animatedBox div:nth-child(1){
    top: 12%;
    left: 42%;
    animation: animate 10s linear infinite;
}

.animatedBox div:nth-child(2){
    top: 70%;
    left: 50%;
    animation: animate 7s linear infinite;
}

.animatedBox div:nth-child(3){
    top: 17%;
    left: 6%;
    animation: animate 9s linear infinite;
}

.animatedBox div:nth-child(4){
    top: 20%;
    left: 60%;
    animation: animate 10s linear infinite;
}

.animatedBox div:nth-child(5){
    top: 67%;
    left: 10%;
    animation: animate 6s linear infinite;
}

.animatedBox div:nth-child(6){
    top: 80%;
    left: 70%;
    animation: animate 12s linear infinite;
}

.animatedBox div:nth-child(7){
    top: 60%;
    left: 80%;
    animation: animate 15s linear infinite;
}

.animatedBox div:nth-child(8){
    top: 32%;
    left: 25%;
    animation: animate 16s linear infinite;
}

.animatedBox div:nth-child(9 ){
    top: 90%;
    left: 25%;
    animation: animate 9s linear infinite;
}

.animatedBox div:nth-child(10 ){
    top: 20%;
    left: 80%;
    animation: animate 5s linear infinite;
}

@keyframes animate {
    0%{
        transform: scale(0) translateY(0) rotate(0);
        opacity: 1;
    }
    100%{
        transform: scale(1.3) translateY(-90px) rotate(360deg);
        opacity: 0;
    }
} 

/* .animatedBox{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animatedBox div{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 1);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.animatedBox div:nth-child(1){
    top: 400px;
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.animatedBox div:nth-child(2){
    top: 400px;
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.animatedBox div:nth-child(3){
    top: 400px;
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.animatedBox div:nth-child(4){
    top: 400px;
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.animatedBox div:nth-child(5){
    top: 400px;
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.animatedBox div:nth-child(6){
    top: 400px;
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.animatedBox div:nth-child(7){
    top: 400px;
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.animatedBox div:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.animatedBox div:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.animatedBox div:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

} */