#floating-stars {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

.page {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    #floating-stars {
        opacity: .95;
    }
}


/* mobile stars fixed with scroll pause v5 */
@media (max-width: 768px) {
    #floating-stars {
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        opacity: .9 !important;
        transform: translateZ(0) !important;
        backface-visibility: hidden !important;
    }
}
