/* Make sure the page fills the viewport */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Apply full-viewport gradient directly to the body */
body {
  background: linear-gradient(to top, #1a3c6c, #f28c28);
  background-attachment: fixed;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

/* Optional styling for the landing page text */
h1 {
  font-size: 3em;
  margin: 0.5em 0;
}

p {
  font-size: 1.5em;
}
