@keyframes logoIMG {
    from {
        transform: rotateY(0deg);
   }
    to {
        transform: rotateY(360deg);
   }
}
.logoIMG
{
    -webkit-animation: logoIMG 5s 15 ;
}

html{
    scrollbar-color: #343A40 #a4aab1;
    scrollbar-width: 20px;
    overflow-y: scroll;
    overflow-x: hidden;
}




::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #a4aab1;
    width: 200px;
    }
    ::-webkit-scrollbar {
    width: 20px;
        background: var(--dark-color-b);
    }
    ::-webkit-scrollbar-thumb {
    background: #343A40;
    border-radius: 10px;
}



#spin{
    animation-name: spin;
    animation-duration: 15.5s;
    transition: all 1.5s ease-out;
    animation-iteration-count: 15s;
    box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);
}

@keyframes spin {
    from {
        background-clip: content-box;
        box-shadow: 0 0 14pt 3pt black;
        color: yellow;
    }
    to {
        background-color: orange;
        box-shadow: 0 0 100pt 20pt silver   ;
        color: red;
        box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23)!important;

    }
}
