/* Container holding the image and the text */
.container {
  position: relative;
  text-align: center;
  color: white;
}

/* Bottom left text */

/* Top left text */
.top {
  color: #1f2142;
  position: absolute;
  top: 8%;
  left: 48%;
}

/* Centered text */
.center {
  position: absolute;
  top: 53%;
  left: 49%;
  transform: translate(-50%, -50%);
}

.bottom-left {
  color: #1f2142;
  position: absolute;
  bottom: 18%;
  left: 5%;
}

/* Bottom right text */
.bottom-right {
  color: #1f2142;
  position: absolute;
  bottom: 18%;
  right: 5%;
}