@import url("../../CSS/style_article.css");

.container_solid .title_wrapper h1 {
    /* the text background */
    background: url("../images/Change_Management_for_Gen_AI_part1.jpg");
    background-size: 100vw auto;
    background-position: center;
    
    /* clip the text is possible */
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    
    /* fallback text color */
    color: black;
  }
  
  .container_image {
    /* Grab a free image from unsplash */
    background-image: url("../images/Change_Management_for_Gen_AI_part1.jpg");
    background-size:100vw auto;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* position the second container below the first container */
    top: 100vh;
  }