::selection {
    background-color: var(--color-primary);
    color: #fff;
}
#rotimg{
    position: relative; 
    border-width: 2px;
    border-style: dotted;
    border-color: white;
    border-radius: 50%;

    -webkit-animation: spin-left 10s linear infinite;
    -moz-animation: spin-left 10s linear infinite;
    -ms-animation: spin-left 10s linear infinite;
    -o-animation: spin-left 10s linear infinite;
    animation: spin-left 10s linear infinite;
}
@-webkit-keyframes spin-left{
    100%{
        -webkit-transform: rotate(-360deg);

        transform: rotate(-360deg);
    }
}