body {
    background-color: black;
    overflow: hidden;
    cursor: none;
}
.topss {
    position:relative;
    width: 200%;
    height: 200%;
    left:-50px;
    top :-50px;
    border: 5px white;
    border-style: dashed;
    
}
.spinimg {
    width: 150px;
    height: 150px;
    animation: 5s linear infinite spin;
    transition: .2s;
}
.spinimg:hover{
    opacity: 0%;
    transform: rotate(600deg);
}

#xspin{
    animation: 2s linear infinite xspin;
    width: 150px;
    height: 150px;   
    transition: .5s ease;
    z-index: 2;
}
#xspin:hover{
    opacity: 0%;
}

.row{
    display: flex;
}

@keyframes spin{
    from{transform: rotate(0deg);}
    to{transform: rotate(360deg);}
}
@keyframes xspin{
    
    from{transform: rotate(0deg);}
    to{transform: rotate(-360deg);}
}
#inversefollow{
    position:fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
    background-color: white;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
#change{
    position: relative;
    background-size: contain;
}
#notfound{
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}