/* style.css */
body {
  font-family: Arial, sans-serif;
  background-color: #ff5050;
  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) */

  .text-block {
    background-color: rgb(191, 255, 191); /* Covers full block width */
    color: rgb(0, 114, 25);
    padding: 10px;               /* Adds space around text */ }




}


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;
}


li::marker {
  color: white;
  background: red; /* Works in some browsers */
}






/* End of style.css */

