.c{
	position: absolute; top:150px; left:20px; background-color: blue;
	transition: background-color .6s, font-size .6s, width .6s, height .5s;
	border-radius: 15px 5px;   
}
html{
    background-image: url(img2.png),url(Img.png);}
.c:hover {
	font-family: all;
    font-size: 26px;
    color:white;
    font-weight: bold;
    width: 350px;
    height: 200px
    background-color: rgba(255,54,255,.7);
    transform: width 2s, height 2s;
     box-shadow: 10px 10px 10px #888888


}