body {
  margin: 0;
  background: #121212;
  color:  rgb(173, 88, 219);
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  height: 100vh;
}

/* Place top-left */
.text1 {
  position: absolute;
  top: 20px;
  left: 20px;
}

/* Place centered horizontally */
.text2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Place bottom-right */
.text3 {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
