.image-btn {
    background-color: transparent;
    border: none;
    padding: 0;
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
}

.image-btn img {
    transition: transform 0.3s ease;
}

.image-btn span {

    color: white;
    padding: 5px 10px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-btn:hover img {
    transform: scale(1.1);
}

.image-btn:hover span {
    opacity: 1;


.container > img {
  position: absolute;
  width: 100%;
  /* height: 100%; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);