.Cursor {
    pointer-events: none;
    position: fixed;
    display: block;
    border-radius: 0;
    transform-origin: center center;
    top: 0;
    left: 0;
    z-index: 1000;
    filter: url("#goo");
}

.Cursor span {
    position: absolute;
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 20px;
    background-color: #ee7536;
    transform-origin: center center;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1023px) {
    .Cursor {
        display: none;
    }
}