/* Make the body and html take up full viewport height */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Set the background image and styling */
body {
  background-image: url('background.png'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding-top: 100px;
}

/* Optional: Add a semi-transparent overlay for better text readability */
.content {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  width: 80%;
  max-width: 800px;
}
