#halloween{
    pointer-events:none;
    background-image: url(/assets/Images/Halloween/ghost.svg);
    background-size:100%;
    background-repeat:no-repeat;
    background-position:50%;
    filter:drop-shadow(2px 4px 6px black);
    height:50px;
    width:50px;
    position:fixed;
    bottom:8px;
    z-index: 150;
    animation:ghost-animation 100s linear infinite
}
@keyframes ghost-animation{
    0%{
        right:calc(100% - 8px);
        transform:scaleX(1)
    }
    49%{
        transform:scaleX(1)
    }
    50%{
        right:8px;
        transform:scaleX(-1)
    }
    99%{
        transform:scaleX(-1)
    }
    100%{
        right:calc(100% - 8px);
        transform:scaleX(1)
    }
}

