body {
    margin: 0;
    overflow: hidden;
}


.fireflies-container {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    pointer-events: none;
    z-index: -1;
}

#gear {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: -25px;
    right: -25px;
    animation: spin 5s linear infinite; /* Анимация вращения */
}

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