button:hover{background-url: "path to image"}
.but{
position: absolute;
top: 250px;
left: 270px;
width: 150px;
height: 50px;
border-radius: 50px;
background-color: purple;
color: white;
}
.but:hover{
background-image: url('images/Download.png');
}