html,
body {
    margin: 0;
    padding: 0;
    height: 150vh;
    overflow-x: hidden;
}

.background {
    background-image: url("1.jpg");
    background-size: cover;
    background-position: 50% 50%;
    height: 150vh;
    font: 900 75vh '';
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.background span {
    font-size: 10rem;
}

.background::before {
    content: '';
    background-size: cover;
    background-image: inherit;
    background-position: 50% 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -99;
}


h1 {
    position: absolute;
    text-align: center;
    width: 100%;
    letter-spacing: 10px;
    color: #fff;
}

h2 {
    position: absolute;
    letter-spacing: 2px;
    top: 120vh;
    width: 60%;
    color: #fff;
    transform: translateX(-50%);
    margin-left: 50%;
    padding: 30px;
    background-color: rgba(0, 0, 0, .3);
}








