/* your styles go here */
.item__overlay {
    position: relative;
}

.item__overlay::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.item__text {
    color: white;
    position: absolute;
    z-index: 2;
    top: 350px;
    left: 50px;
    font-weight: 700;
    font-size: 50px;
    text-shadow: 2px 2px 0px black, -2px -2px 0px black;
    /*transform: translateX(-50%);*/
}