body {
  margin: 0; /* Remove default margin */
  height: 100vh; /* Full viewport height */
  background: linear-gradient(to bottom right, #080f5c, #144c85); /* Gradient background */
  display: flex;
  flex-direction: column; /* Stack headers vertically */
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically */
  font-family: Arial, sans-serif;
  text-align: center; /* Center text inside headers */
}

/* Heading styling */
h1, h2 {
  font-weight: bold; /* Make text bold */
  color: #ffffff; /* Change this to any color you like */
  margin: 0; /* Remove default margin */
}

h1 {
  font-size: 3em; /* Make text larger */
}

h2 {
  font-size: 2em;
}
