body {
  font-size: 12px;
  font-family: sans-serif;
  margin: 0;
  height: 100vh; /* Full viewport height */
  width: 100vw; /* Full viewport width */
  color: black;
  text-align: center;
  overflow-x: hidden;
  position: relative; /* Make sure the body has a relative position for absolute positioning of the overlay */

  background-image: url('images/Donate.jpg');
  background-size: cover; /* Scale the image to cover the container */
  background-position: center bottom; /* Center horizontally and position the image to cut off the top */
  background-attachment: fixed;
  background-repeat: no-repeat; /* Prevent the image from repeating */
}

body::before {
  content: ''; /* Required for pseudo-elements */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:150%;
  /* background: rgba(0, 0, 0, 0.2); Black overlay with 50% opacity */
  z-index: -1; /* Place the overlay behind the content */
  
}

h1 {
  color: white;
  font-size: 50px;
  margin: 5px;
}

h2 {
  color: white;
  font-size: 50px;
  margin: 5px;
}

p {
  color: white;
  margin: 5px;
  font-size: 20px;
}

ul {
  color: white;
  margin: 5px;
  font-size: 20px;
}

l1 {
  color: white;
  margin: 5px;
  font-size: 20px;
}

.content {
  position: absolute;
  width: 99%;
  height: 100%;
  margin: 0 auto;
}

.text-content {
  display: flex;
  flex-direction: column; 
  text-align: center;
  justify-content: center;
  width: 70%;
  margin: auto;
  height: fit-content;
  background-color: rgba(15,37,84, 0.9);
  border-radius: 20px;
  padding: 20px;
  margin-top: 10px;
  word-wrap: break-word;
}

a {
  color: white;
}

a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: white; 
}