* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100dvh;
  background: #000;
}

body {
  display: grid;
  place-items: center;
}

#main-content {
  text-align: center;
  padding: 1rem;
}

p {
  color: #dde4ec;
  font-family: Arial, sans-serif;
  text-wrap: nowrap;
  margin: 10px;

  /* Responsive but bounded */
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}