@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.spin {
    animation: rotation 2s infinite linear;
}

@keyframes multi {
    0% {
        background-color: rgba(255, 0, 0, 0.2)
    }
    33% {
        background-color: rgba(0, 255, 0, 0.2)
    }
    66% {
        background-color: rgba(0, 0, 255, 0.2)
    }
    100% {
        background-color: rgba(255, 0, 0, 0.2)
    }
}

.pulse {
    animation: multi 1s infinite linear;
}

@font-face { font-family: vcr; src: url('Crang.ttf'); } 

@keyframes marquee {
    0%{
        left: 0px;
    }
    100%{
        left: -10000000px;
    }
}
