 .zoomable {
 max-width: 100%;
 height: auto;
 position: relative;
 transition: transform 0.8s ease-in-out;
}

.zoomable:hover {
 transform: scale(1.1);
 width: calc(15px + 15px);
 height: calc(15px + 15px);
 position: relative;
 z-index: 1;
}

.zoomable:not(:hover) {
 z-index: 0;
}

.rotate img {
 transition: transform 0.3s ease-in-out;
}

.rotate img:hover {
 transform: rotate(30deg);
}
 .Stars img {
 transition: transform 0.3s ease-in-out;
}

.Stars img:hover {
 transform: scale(1.3);
}