:root {
  --background-color: #f8c4ff;
}

body {
  background-color: var(--background-color);
  font-family: monospace;
}

.center {
  position: fixed;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}

.center > p {
  font-size: 22px;

  text-align: center;
  margin-top: -4px;
}