
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: url('/images/studland.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #023E8A;
      /*text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);*/
    position: relative;
    min-height: 100vh;
}


Ah, that's the issue! Setting display: none; hides the entire <header> element (and everything inside it), which is why the <h1> and navigation links aren't visible.

To fix this, change the display property for the header to something like this:

css
Copy
Edit
header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5); /* Optional, for contrast */
    display: flex; /* Arrange children (h1 and nav) horizontally */
    justify-content: space-between; /* Place h1 on the left, nav on the right */
    align-items: center; /* Vertically align h1 and nav items */
    padding: 1rem;
    z-index: 10; /* Ensure it’s above other elements */
}

h1 {
    margin: 0;
    color: #023E8A; /* Fix missing hash for color */
    font-size: 2rem;
}

nav {
    display: flex !important; /* Ensures horizontal layout */
    gap: 1rem; /* Adds spacing between links */
    justify-content: flex-end; /* Moves links to the right */
    align-items: center; /* Vertically aligns links */
}


nav a {
    color: #023E8A; /* Use the same color as h1 */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

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


nav a {
    color: #023E8A;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

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

nav.bottom-nav {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    gap: 1.5rem;
    background: none;
    display: flex;
}


main {
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    background-color: transparent;
    border-radius: 8px;
    margin-top: 100px;
    margin-bottom: 100px; /* Enough space for the footer */
}

.section {
    margin-bottom: 2rem;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    color:#FFF;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    z-index: 10; /* Ensures it sits above other elements */
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    nav.bottom-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    nav a {
        margin: 0.5rem 0;
    }
}
