In this code the CSS will make the Image "grow" when you hover over it. However , I'd like to make the image grow when you hover over the word "github" (next to the image).
<style>
.hvr-grow {
display: inline-block;
vertical-align: middle;
-webkit-transform: perspective(1px) translateZ(0);
transform: perspective(1px) translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: transform;
transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
</style>
<a href=""><img class ="hvr-grow" src="Images/github.png"> GitHub</a>