body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.hdwallpapers.in%2Fdownload%2Fsky_with_full_of_bright_stars_and_dirtly_clouds_during_night_hd_galaxy-HD.jpg&f=1&nofb=1&ipt=77f120fd6255f549e40ab16957d6a86176361505ba92b3489082d6fa48fc9940&ipo=images') no-repeat center center fixed;
    background-size: cover;
    color: white;
   
}

main {
    flex: 1; /* This pushes the footer to the bottom if there's not enough content */
}

    
}
header {
    background: #1A1A1A ;
    padding: 1rem;
    text-align: center;
}

header h1 {
    font-size: 2.2em;
    margin-bottom: 0.5em;
    font: star jedi
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
}

nav a:hover {
    text-decoration: underline;
}


nav a:visited {
    color: white;
}

a {
    color:white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
}

a:hover {
    text-decoration: underline;
}




<img src="images/responsive.jpg" alt="Responsive image" style="max-width: 100%; height: auto;" />

main {
    padding: 20px;
}

section {
    margin: 20px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

section h2 {
    font-size: 1.8em;
    color: #FFFFFF;
    margin-bottom: 10px;
}


.gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.gallery img {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.1);
}



section p {
    font-size: 1.2em;
    color: #F8F9FA;
    line-height: 1.8;
}

footer {
    text-align: center;
    padding: 10px;
    background: #1A1A1A;
    margin-top: 40px;
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    nav ul {
        text-align: center;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    header h1 {
        font-size: 2em;
    }

    section h2 {
        font-size: 1.5em;
    }

    nav a {
        font-size: 1.2em;
    }
}
