﻿#innercontent {
    background: linear-gradient(53deg, #0a41ee, #a4d9a4, #9eb4c1, #ff0000);
    background-size: 800% 800%;
    -webkit-animation: AnimationName 26s ease infinite;
    -moz-animation: AnimationName 26s ease infinite;
    animation: AnimationName 26s ease infinite;
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 76%
    }

    50% {
        background-position: 100% 25%
    }

    100% {
        background-position: 0% 76%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 76%
    }

    50% {
        background-position: 100% 25%
    }

    100% {
        background-position: 0% 76%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 76%
    }

    50% {
        background-position: 100% 25%
    }

    100% {
        background-position: 0% 76%
    }
}
