/* Container holding the image and the text */
.imageCentered {
  position: relative;
  text-align: center;
  color: white;
}

/* Bottom left text */
.imageTextBottomLeft {
  position: absolute;
  font-size: 24px;
  bottom: 8px;
  left: 16px;
}

/* Top left text */
.imageTextTopLeft {
  position: absolute;
  font-size: 24px;
  top: 8px;
  left: 16px;
}

/* Top right text */
.imageTextTopRight {
  position: absolute;
  font-size: 24px;
  top: 8px;
  right: 16px;
}

/* Bottom right text */
.imageTextBottomRight {
  position: absolute;
  font-size: 24px;
  bottom: 8px;
  right: 16px;
}

/* Centered text */
.imageTextCentered {
  position: absolute;
  font-size: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
