 /* Container holding the image and the text */
 
.container_txt_img {
  position: relative;
  text-align: center;
  color: white;
}


/* Top left text */
.top-left_txt_img {
  position: absolute;
  top: 18px;
  left: 16px;
  
  background-color: blue;
  padding:15px;
  font-size:1.6em;  
  
}

/* Top right text */
.top-right_txt_img {
  position: absolute;
  top: 18px;
  right: 16px;
 
  opacity:70%;
  background-color: blue;
  padding:5px;
  font-size:0.9em; 
  
}

/* Bottom left text */
.bottom-left_txt_img {
  position: absolute;
  bottom: 18px;
  left: 16px;

  opacity:70%;
  background-color: black;
  padding:6px;
}

/* Bottom right text */
.bottom-right_txt_img {
  position: absolute;
  bottom: 18px;
  right: 16px;
  
  opacity:70%;
  font-size:0.9em;
  background-color: black;
  padding:6px;  
}

/* Centered text */
.centered_txt_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} 