.gallery-container {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 500px;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 1em;
}

.gallery-container>div {
    flex: 0 0 120px;
    border-radius: 0.5rem;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    /* box-shadow: 1px 5px 15px #1e0e3e; */
    position: relative;
    overflow: hidden;
}

.gallery-container>div {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;

}

.gallery-container>div .content {
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 15px;
    opacity: 0;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    background: #00000090;
    /* background: linear-gradient(0deg, rgba(2, 2, 46, 0.6755077031) 0%, rgba(255, 255, 255, 0) 100%); */
    transform: translatey(100%);
    transition: opacity 0.5s ease-in-out, transform 0.5s 0.2s;
    visibility: hidden;
}

.gallery-container>div .content span {
    display: block;
    margin-top: 5px;
    font-size: 1.2rem;
}

.gallery-container>div:hover {
    flex: 0 0 250px;
    /* box-shadow: 1px 3px 15px #7645d8; */
    transform: translatey(-30px);
}

.gallery-container>div:hover .content {
    opacity: 1;
    transform: translatey(0%);
    visibility: visible;
}