body {
    background-image: url('download\ \(1\).jpeg');
    background-size: cover;
    /* Ensures the image covers the entire page */
    background-position: center;
    /* Centers the image */
    background-attachment: fixed;
    /* Makes the background image fixed when scrolling */
    color: #333;
    line-height: 1.6;
    padding: 20px;
}



header {
    background: linear-gradient(90deg, #d2e14b, #ce8dac);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
    background: linear-gradient(90deg, #e7c1d6, #8c97e8);
    /* color: #111010; */
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(1, 0, 0, 0.677);
    margin-top: 1rem;
    opacity: 0.9;
    
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #232020;
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    display: inline-block;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: #51484296;
    border-radius: 5px;
}





section {
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgb(0, 0, 0);
    transition: transform 0.2s;
    opacity: 0.9;
    /* color: #f4d8d8; */
    


}



section:hover {
    background-color: rgba(242, 241, 241, 0.8);  /* Darker background when hovered (higher opacity) */
}


section:hover {
    transform: scale(1.02);
}

footer {
    text-align: center;
    padding: 8px;
    background: #222;
    color: white;
    margin-top: 10px;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
    flex-wrap: wrap;
}





a {
    text-decoration: none;  /* Removes the underline */
    color: inherit; /* Keeps the default text color */
}


nav a {
    text-decoration: none;  /* Remove underline */
    color: white; /* Keep the text color white */
}

nav a:hover {
    color: #ffffff; /* Change color on hover */
}




nav ul li {
    display: inline-block; /* Ensures they stay in line */
    padding: 10px 15px; /* Adds space around text */
    transition: transform 0.3s ease; /* Smooth transition effect */
}

nav ul li:hover {
    transform: scale(1.2); /* Increases size by 20% on hover */
}
