#Application {
  color: darkgreen;
  text-align: center;
  text-decoration: underline;
  text-transform: uppercase;
  background-color: burlywood;
  line-height: 130px;
}

#pic {
  position: relative;
  background-image: url('kps-logo.jpeg');
  background-size: 1200px;
  background-position: center;
  padding: 20px;
  color: black; /* Ensure text stays dark */
}

/* Add a semi-transparent overlay using a pseudo-element */
#pic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* White with 70% opacity */
  z-index: 0;
}

/* Ensure the text appears above the overlay */
#pic h1,
#pic h4, 
#pic h3 {
  position: relative;
  z-index: 1;
  font-weight: lighter;
}
#pic p { position: relative;}
#su { text-transform: uppercase; 
font-weight: 900;}
#r { font-weight: 800;}