#particle-canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background-color: transparent;
}

#particle-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Reusable particle background for any div */
.bg-particle {
    position: relative;
    overflow: hidden;
}

.bg-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-particle>* {
    position: relative;
    z-index: 1;
}