/* .dnsoft{
    width : 100%;
    text-align: right;
    animation : pop .5s infinite;
} */

.dnsoft{
    position : fixed;
    top : 65%;
    right : 1%;
    animation : pop .5s infinite;
    z-index: 1000;
}

.dnsoft img{
    width : .6rem;
   height : unset;
   margin: 0.2rem 0.1rem 0 0;
   box-shadow: 0px 0px 10px 0px #858585;
}

@keyframes pop{
    0%{
      transform : scale(1);  
    }
    
    
    50%{
        transform : scale(1.1);
    }
    
    
    100%{
       transform : scale(1); 
    }
    
}


