#navbar {
    background-color: rgba(180, 183, 187, 0.75);
}

a {
    color: inherit;
    text-decoration: none;
    border: none;
}

a:hover {
    color: #ccc;
    /* Lighter hover effect */
}

.flex-wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
}

.bg1 {
    /* The image used */
    background-image: url("/assets/nasa_bg.webp");
    min-height: 100vh;
    /* Ensures full viewport coverage */

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.responsive {
    max-width: 100%;
    height: auto;
}

.about {
    background-color: rgba(0, 0, 0, 0.75);
    margin: 5vw;
    /* More flexible spacing */
    padding: 20px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

h1,
h2,
h3,
p,
a {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}
