*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    background: #222;
    color: #eee;
}

h1{
    font-family: Arial, Helvetica, sans-serif;
    user-select: none;
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}


.visuals_layer{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
}


.particle{
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 3px;
    background: #f8f;
    box-shadow: 0px 0px 5px #f3f;
    border-radius: 10px;
}