/* The animation code */
@keyframes myAnimation {
    from {
        background-color: rgb(255, 166, 255);
    }

    to {
        background-color: rgb(112, 202, 255);
    }

}




body {
    background-color: rgb(255, 255, 255);
    animation-name: myAnimation;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    animation-direction: alternate;
}