img {
  transition: transform 0.25s ease; /* Smooth transition for the effect */
  cursor: pointer;
}

.enlargedR {
	display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
	height: 100%;
	transform: translate(-150%, 0) scale(4);      
	z-index:10;
}
.enlargedL {
	display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
	transform: translate(150%,0) scale(4);      
	height: 100%;
	z-index:10;
}

.smallImg {
	width: 25%;
	height: auto;
}
