.net-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: radial-gradient(circle, #5234c173 0%, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.6;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.net-background::before,
.net-background::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

.net-background::before {
    background: #4f46e5;
    top: -150px;
    right: -100px;
    width: 700px;
    height: 700px;
    filter: blur(144px);
    opacity: 0.25;
}

.net-background::after {
    background: #10c287;
    bottom: 10%;
    left: -200px;
    width: 700px;
    height: 700px;
    filter: blur(144px);
    opacity: 0.25;
}

.has-net-bg {
    position: relative;
    overflow: hidden;
}

.has-net-bg>.container,
.has-net-bg>*:not(.net-background):not(.color-blob) {
    position: relative;
    z-index: 2;
}