
@keyframes daynight{

    0%{

        background: white;
    }

    50%{

        background: darkblue;
    }

    100%{

        background: black;
    }
}

body{
    
    animation: daynight 3s linear alternate infinite;
}

