/* style.css */
body {
  font-family: Arial, sans-serif;
  background-color: #70fff8;
  margin: 0;
  padding: 0;



 
  background-image: url(""); /* Replace with your image path */
  background-repeat: no-repeat; /* Prevents the image from tiling */
  background-size: cover;      /* Scales the image to cover the entire element */
  background-position: center; /* Centers the image */
  background-attachment: fixed; /* Keeps the image fixed during scrolling (optional parallax effect) */
}







h2, p {
  margin: 20px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #000000;
  display: flex;
}

ul li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover {
  background-color: #ff0000;
}

ul li a.active {
  background-color: #4CAF50;
}

/* End of style.css */

