.gallery-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    width: 100%;
    margin-bottom: 0px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    padding: 20px;
    text-align: center;
    max-width: 90%;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    font-family: 'Poppins';
}
