.arrow-down {
    animation: ScrollAnimation 1s ease-in-out infinite;
}

* {
    cursor: none !important;
}

.cursor {
    position: fixed;
    width: 64px;
    height: 64px;
    pointer-events: none;
    z-index: 9999999;
    transform: translate(-50%, -50%);
}

@keyframes ScrollAnimation {
    0% {
        transform: translateY(-4px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(4px);
    }
}