.bg-though-text {
    font-size: 100px;
    font-weight: 700;
    text-transform: uppercase;
    background-image: url("img/wendy_main.png");
    background-color: #000000;
    /* This will start the magic */

    -webkit-background-clip: text; /* This will bring bg shape according to text*/
    -webkit-text-fill-color: transparent; /* This will make text color transparent */
    color: rgba(0,0,0,0.0); /* This will make text color transparent for sure */
}

#content-container {
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0 50px 0 50px;
}

#box1 {
  display: inline-block;
  height: 100%;
  width: 30%;
  background-color: orange;
}

#box2 {
  display: inline-block;
  height: 100%;
  width: 30%;
  background-color: blue;
}

#box3 {
  display: inline-block;
  height: 100%;
  width: 30%;
  background-color: yellow;
}