/* style.css */
html, body {
  height: 100%;
  margin: 0;
}

body {
  background-color: #000; /* black background */
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  font-size: 8rem;   /* larger — change to taste */
  color: #fff;       /* white text */
  font-weight: 700;  /* bold */
  margin: 0;
  text-align: center;
}
