/* ===== Floating Boxes ===== */
.box div {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 2px solid rgb(255, 255, 255, 0.8);
    border-radius: 25%;
    pointer-events: none;
    z-index: 0;
    box-shadow: inset 0 0 15px 10px rgb(255, 255, 255), /* Inner glow */
                0 0 15px 10px rgb(255, 255, 255);  /* Outer glow */
}

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

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

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

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

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

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

.box div:nth-child(7){
    top: 70%;
    left: 90%;
    animation: animate 15s linear infinite;
}

.box div:nth-child(8){
    top: 42%;
    left: 80%;
    animation: animate 16s linear infinite;
}

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

.box div:nth-child(10){
    top: 20%;
    left: 90%;
    animation: animate 6s linear infinite;
}

.box div:nth-child(11){
    top: 40%;
    left: 20%;
    animation: animate 9s linear infinite;
}

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