:root {
    --gradient-color-1: rgb(40, 28, 51);
    --gradient-color-2: rgb(0, 0, 0);
}


.background {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: -101;

    background-color: var(--gradient-color-1);
    background: linear-gradient(
        180deg,
        var(--gradient-color-1) 0%,
        var(--gradient-color-2) 100%
    );
}


.background canvas {
    position: fixed;
    top: 0;
    left: 0;

    z-index: -100;

    pointer-events: none;
}