.imageContainer {
    position: relative;

    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;

    margin-bottom: 20px;
}

.imageContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    cursor: pointer;

    transition: .2s;
}

.overlay:hover {
    opacity: 1;

    transition: .2s;
}

.seemore {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 100px;

    cursor: pointer;

    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0) 70%);
    color: white;
}

.seemore p{
    animation: shake 2s ease-in-out infinite 1s; 
}