@keyframes bgcolor {
    0% {
        background-color: #8d00e5
    }

    30% {
        background-color: #4ed10c
    }

    60% {
        background-color: #00b7c7
    }

    90% {
        background-color: rgb(255, 51, 173)
    }

    100% {
        background-color: #b34cbf
    }
}

.holdmycolors {
    -webkit-animation: bgcolor 10s infinite;
    animation: bgcolor 5s infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    min-height: 3px;
    padding: 0;
    margin: 0;
    display: block;
}