/* Reset some basic elements for a clean slate */
body, h1, p, input, button {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Avenir Next', sans-serif;
    box-sizing: border-box; /* Make sure padding doesn't affect total width/height */
  }
  
  /* Apply the background image to the entire page */
  body {
    background-image: url('/static/shared/images/background.png'); /* Replace with your actual image path */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    min-height: 100vh; /* Full viewport height */
    color: #ffffff; /* Set base text color to white */
  }