/* Container holding the image and the text */
.container {
  position: relative;
  text-align: center;
  color: #3B3B3B;
}

/* Bottom left text */
.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
  background-color: #AFAFAF;  
}

/* Top left text */
.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
  background-color: #AFAFAF;
}

/* Top right text */
.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
  background-color: #AFAFAF;
}

/* Bottom right text */
.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
  background-color: #AFAFAF;
}

/* Bottom centered text not wrapped */
.bottom-centered_nowrap {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #AFAFAF;
  border: 2px solid #AFAFAF;
  padding: 8px;
  background-color: #AFAFAF;
  width: fit-content;
  border-radius: 4px;
  white-space: nowrap;
}
  
/* Bottom centered text wrapped */
.bottom-centered {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #AFAFAF;
  border: 2px solid #AFAFAF;
  padding: 8px;
  background-color: #AFAFAF;
  width: fit-content;
  border-radius: 4px;
}

}