body {
  font-family: Arial, sans-serif; /* Specify a preferred font */
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5; /* Light gray background */
  color: #333; /* Dark text for better contrast */
}

header {
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 3em;
  margin-bottom: 0;
  color: #007bff; /* Blue heading */
}

p {
  font-size: 1.2em;
  margin: 10px 0;
  line-height: 1.5; /* Increase line spacing for readability */
}

footer {
  text-align: center;
  padding: 10px;
  font-size: 0.8em;
  color: #aaa; /* Light gray footer text */
}
