.hover {
    cursor: none; 
}

.custom-cursor {
    position: absolute;
    width: 80px;
    height: 80px;
    font-size: 50px;
    color: white; 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.custom-cursor::before {
    content: "";
    display: inline-block;
    width: 44px;
    height: 44px;
    background-image: url('/images/mouse.png');
    background-size: cover;
  }


@media screen and (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
}