.zoom {
  transition: transform .2s; /* Animation */
}

.zoom:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.smallZoom {
    transition: transform .2s; /* Animation */
  }
  
  .smallZoom:hover {
    transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  }

.rotateImg {
    transition: transform 1.0s ease;
}

.rotateImg:hover {
    transform: rotate(360deg);
 }

.myResume {
    padding: 10px;
    border-radius: 12px;
    background-color: black;
    color: white;
}

.myResume:hover {
  color: white; 
}