 body {
 background-image: url('https://wallpaperaccess.com/full/2744097.jpg');
            background-size: cover; 
            background-repeat: no-repeat;
            background-position: center; 
            background-attachment: fixed; 
            margin: 0; 
            height: 100vh; 
        }
        
     /* Header container */
header {
    position: relative;
    text-align: center;
    padding: 15px 0;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* Dark overlay on top of background image */
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* darkens image */
    z-index: 0;
}

/* Header text stays above overlay */
header h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #ffffff;
}

/* Optional: subtitle or smaller text */
header p {
    position: relative;
    z-index: 1;
    color: #dcdcdc;
    margin-top: 5px;
    font-size: 16px;
}
h2 {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.7); /* dark highlight */
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 8px;
    margin-top: 20px;
}
p, li {
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    font-size: 16px;
}
div {
  color: white;
   text-shadow: 1px 1px 5px rgba(0,0,0,0.9);
}