/* Apply a dark background and light text color */
body {
  background-color: #121212;
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Center the content container */
.centered-container {
  text-align: center;
}

/* Styling for the header text */
.header-text,
.body-text {
  display: block; /* Ensure each element is a block element */
  width: 100%;   /* Make sure the elements take up full width */
  font-weight: normal; /* Set font weight to normal to remove boldness */
}

/* Additional styling for the header text */
.header-text {
  font-size: 32px;
  margin: 0 0 10px 0; /* Add margin below the header */
}

/* Additional styling for the body text */
.body-text {
  font-size: 24px;
  margin: 0;
}

