.come{
    width: 400px;
    height: 400px;
    background-image: url("../img/download.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 20px;
    animation-name: fade;
    animation-duration: 10s;
    animation-delay: 3s;
    animation-iteration-count: infinite;
    position: absolute;
    left: 30%;
    top: 20%;
}


@keyframes fade {
    0% {background-image: url("../img/download.jpg"); width: 50px; height: 50px; border: 4px double red; border-radius: 10px; }
    25%{background-image: url("../img/frustrated-confused-african-man-holding-laptop-computer\ \(1\).jpg");width: 500px; height: 300px; border: 4px double red; border-radius: 10px; }
    50%{ background-image: url("../img/IMG-20230802-WA0166.jpg"); width: 500px; height: 300px;  border: 4px dotted greenyellow;border-radius: 10px;}
    75%{background-image: url("../img/yahoomail.jpg"); width: 500px; height: 300px;  border: 4px ridge blue;border-radius: 10px;}
    100%{background-image:url("../img/young-smiling-african-man-standing-using-laptop__1_-removebg-preview.png"); width: 500px; height: 300px;  border: 4px solid purple; border-radius: 10px;}
}

#Next{
    border: 2px solid transparent;
    background-color: blue;
    color: white;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 10px;
    position: absolute;
    bottom: 20px;
    right: 20px;


}
#Next:hover{
    background-color: white;
    color: blue;
    border: 2px solid blue;
}

