 /* Container holding the image and the text */
.container {
  position: relative;
  text-align: center;
  color: rgb(0, 0, 0);
}

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

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

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

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

/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}  

/* Time text */
.time {
  position: absolute;
  top: 40%;
  left: 31%;
  font-family: Consolas,monaco,monospace;
  font-size: 6vw;
}

/* Date text */
.date {
  position: absolute;
  top: 50%;
  left: 25%;
  font-family: Consolas,monaco,monospace;
  font-size: 8vw;
}
