body {
    background-image: linear-gradient(to top, rgb(69, 91, 70), rgb(181, 207, 119));
    /* CSS Reset*/
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;

    /* CSS Grid */
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* same as writing 1fr */
    grid-template-rows:  repeat(4, 1fr);
    justify-content: center;
    align-items: center;


}

h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: white;
    text-transform: uppercase;
    margin: 0;
    font-size: clamp(8rem, 20vw, 18rem);
    /* rem = root em */
    /* clamp (min text size. prefererd text size VW), max text size) */
    text-wrap: nowrap;

    /* Text Mask */
    background-image: url('../images/bg-image.jpg');
    background-size: cover;
    color: transparent;
    background-clip: text;
}



#firstWord {
    background-position: top;
    /* place ihn grid */
    grid-column-start: 2;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 4;
}

#secondWord {
    background-position: bottom;
    grid-column-start: 3;
    grid-column-end: 7;
    grid-row-start: 3;
    grid-row-end: 4;
}