.imageScroll {
    background-size: cover;
    background-position: top center;
    transition: background-position 1s ease-in-out !important;
    -webkit-transition: background-position 1.5s ease-in-out !important;
    border-radius: 20px;
    margin: 20px;
    width: 300px; /* Fixed width */
    height: 400px; /* Fixed height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.imageScroll:hover,
.imageScroll.active {
    background-position: center bottom !important;
}
