body,
html {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.centered-text {
  display: flex; /* Makes the container a flexbox */
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  height: 100vh; /* Adjust height as needed */
  margin: 0; /* Ensures no unwanted margins */
}