 /* To get images in Bootstrap's card to be the same height/width */
.img-country {
  width: 100%;
  height: 19vh;
  object-fit: cover; /* The object-fit: cover enables zoom instead of image stretching. */
} 

/* Hover effects */
.img-country:hover {
  transform: scale(1.01, 1.01);
}

