
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

.background {
  background-image: url('./images/mandale3.jpg'); /* Replace with your image file */
  
  background-size: cover;              /* Shrinks image to 50% of its original size */
  background-repeat: no-repeat;
  background-position: center;

  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /*background-color: rgba(0, 0, 0, 0.5);*/
  background-color: white;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Adjust opacity here */
  z-index: 1;
}
.foreground-text {
  background-color: transparent;/*rgba(0, 0, 0, 0.5); /* Semi-transparent background */ */
  /*color: white;*/
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  z-index: 2;
  
  
}

.foreground-text h1 {
  font-size: 8vW;
  margin-bottom: 20px;
  color: green;
  
}

.foreground-text p {
  font-size: 1.5em;
}

