﻿
/*.light {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    bottom: 295px;
    position: absolute;
    z-index: 10;
    left: 20px;
    animation: light 800ms ease-in-out 0s infinite alternate;
}*/

.Imgcloud {
    position: absolute;
    top: 0px;
    right: -500px;
    opacity: .8;
    animation: Imgcloud 10s linear 0s infinite reverse;
    z-index: 99;
}

@keyframes light {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes Imgcloud {
    from {
        right: -500px;
    }

    to {
        right: 102%;
    }
}


.moon {
    width: 35px;
    height: 35px;
    background-color: rgb(146, 146, 31);
    box-shadow: 0 0 20px rgb(255, 208, 0);
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 120px;
}



@keyframes animate9 {
    80%, 100% {
        top: 37%;
    }

    50% {
        color: rgb(228, 167, 0);
    }
}
HTML CSSResult Skip Results Iframe
EDIT ON

.searcpoprow .Imgcloud img {
    width: 370px;
}
.sun {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    /*bottom: 0;*/
    margin: auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    opacity: 0.9;
    box-shadow: 0px 0px 40px 15px white;
}

.ray_box {
    position: absolute;
    margin: auto;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 70px;
    -webkit-animation: ray_anim 120s linear infinite;
    animation: ray_anim 120s linear infinite;
}

.ray {
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    margin-left: 10px;
    border-radius: 80% 80% 0 0;
    position: absolute;
    opacity: 0.1;
}

.ray1 {
    height: 170px;
    width: 30px;
    -webkit-transform: rotate(180deg);
    top: -175px;
    left: 15px;
}

.ray2 {
    height: 100px;
    width: 8px;
    -webkit-transform: rotate(220deg);
    top: -90px;
    left: 75px;
}

.ray3 {
    height: 170px;
    width: 50px;
    -webkit-transform: rotate(250deg);
    top: -80px;
    left: 100px;
}

.ray4 {
    height: 120px;
    width: 14px;
    -webkit-transform: rotate(305deg);
    top: 30px;
    left: 100px;
}

.ray5 {
    height: 140px;
    width: 30px;
    -webkit-transform: rotate(-15deg);
    top: 60px;
    left: 40px;
}

.ray6 {
    height: 90px;
    width: 50px;
    -webkit-transform: rotate(30deg);
    top: 60px;
    left: -40px;
}

.ray7 {
    height: 180px;
    width: 10px;
    -webkit-transform: rotate(70deg);
    top: -35px;
    left: -40px;
}

.ray8 {
    height: 120px;
    width: 30px;
    -webkit-transform: rotate(100deg);
    top: -45px;
    left: -90px;
}

.ray9 {
    height: 80px;
    width: 10px;
    -webkit-transform: rotate(120deg);
    top: -65px;
    left: -60px;
}

.ray10 {
    height: 190px;
    width: 23px;
    -webkit-transform: rotate(150deg);
    top: -185px;
    left: -60px;
}


@-webkit-keyframes ray_anim {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



