
.courities-info-section{
    background-color:grey;
    animation:sky 205s linear alternate;
}
@keyframes sky{
    0%{
        background-position:0 0
    }
    100%{
        background-position:0 100%
    }
}
.earth {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: url(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Whole_world_-_land_and_oceans.jpg/1200px-Whole_world_-_land_and_oceans.jpg?20140915121052);
    background-size: cover;
    transform: rotateX('6deg') rotateY('6deg') rotateZ('6deg');
    animation: rotate 10s linear 0s infinite;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

@keyframes rotate {
    0%{
        background-position:0 0
    }
    100%{
        background-position:355px 0
    }
}