.mouseGrid>div {
    left: var(--windowX);
    top: var(--windowY);
    background: rgba(255, 255, 255, .15);
    transform: translate(-50%, -50%);
    position: absolute;
}

.mouseGrid {
    width: 100%;
    height: 100%;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
}

.verticalPointer {
    width: 1px;
    height: 200%;
}

.horizonPointer {
    height: 1px;
    width: 200%;
}

@media screen and (max-width:1024px) {
    .mouseGrid {display: none;}
}