.parallax-scrolling {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}

.parallax-scrolling::before{
    content:'';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #8DC850 , transparent);
    z-index: 10000;

}

.parallax-scrolling::after {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: color;
}

.parallax-scrolling h1 {
    display: flex;
justify-content: center;
font-family:sans-serif }


.parallax-scrolling img {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

#text {
    position: relative;
    color: #fff;
    font-size: 5em;
    z-index: 1;
    transition: transform 0.3s ease;
    font-family: b;
}

#grass {
    position: absolute;
    z-index: 3;
    transition: transform 0.3s ease;
    top: -60px;
    bottom: 0;
}

#trees {
    position: absolute;
    z-index: 2;
    top: 80px;
    transition: transform 0.3s ease;
}

