body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-image: url('your-background-image.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  font-family: 'Roboto', sans-serif; /* Example font family */
  color: #333; /* Text color */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  padding: 20px;
  text-align: center;
  z-index: 1; /* Ensure it stays on top */
}

main {
  flex: 1; /* Make the main content take up the remaining space */
  padding: 20px;
  text-align: center;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
  padding: 20px;
  text-align: center;
  z-index: 1; /* Ensure it stays on top */
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  line-height: 1.5;
}

a {
  color: #007bff;
}
