
/* 🌌 General Styling */
body {
    background: linear-gradient(to right, #0a0a0a, #1a1a2e);
    color: white;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* 🚀 Header Styling */
header h1 {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    font-size: 2.5rem;
}

/* 🔹 Image & Content Card */
.photo-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    max-width: 800px;
    margin: 20px auto;
}

/* 🌠 NASA Image Styling */
#pic {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    transition: 0.3s ease-in-out;
}

#pic:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.7);
}

/* 🔥 Navigation Styling */
nav {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: #00ff00;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

nav a:hover {
    background-color: rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* 🌌 Footer Styling */
footer {
    margin-top: 20px;
    padding: 10px;
    background-color: #111;
    color: white;
    border-top: 2px solid #00ff00;
}

/* ✨ Animated Background Stars */
@keyframes stars {
    0% { background-position: 0 0; }
    100% { background-position: -1000px 1000px; }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://source.unsplash.com/1600x900/?stars,space');
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
    animation: stars 60s linear infinite;
}
