@charset "UTF-8";
/* CSS Document */

.img-button {
    width: 80vw;
  	height: auto;
  	filter: drop-shadow(0px 0px 40px black);
	transition: width 1s ease;
}

/* For larger screens */
@media screen and (min-width: 1000px) {
   	.img-button {
    	width: 40vw;
  		height: auto;
	}		
	.img-button:hover {
		width: 42vw;
	}
}