.bubble {
    position:relative;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
} 

.bubble-background {
    position: absolute;
    background-color: #00000000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    /* backdrop-filter: blur(8px); */
}

.light-dashes-background {
    position: fixed;
    background-color: #1a1a1a;
    top: 0;
    left: 0;
    width: 100%;
    height: 5000%;
    z-index: -1;
}