body {
    background: #e3e3e3;
    padding: 50px 0;
}

.my-container {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: black;
    overflow: hidden;
}

.my-container:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
    background-image: url(./images/meal.jpg);
    background-repeat: no-repeat;
    background-position: 50% 0;
    -ms-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
}

.my-container h1 {
    padding: 50px;
    text-align: center;
    z-index: 2;
    position: sticky;
    color: black;
}

article {
    background: #fff;
    padding: 15px;
}