

/* Container for images */
.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

/* Style for images */
.blow-up-image {
    width: 80%;
    max-width: 300px;
    margin-bottom: 30px;
    opacity: 1;
    transition: transform 1s ease, opacity 1s ease;
}

/* Adding a transition to the transform and opacity properties */
