body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url('ne.jpeg');
    background-size: 100% 550px;     /* Full width, 400px height */
    background-repeat: no-repeat;
    background-position: top center;
    height: 2000px; /* Make sure the page is scrollable */
    background-color: darkgrey;
}


header {
    background-color: #6d3bf8;
    color: white;
    padding: 10px;
    text-align: center;
}

nav {
    margin-top: 10px;
}

nav a {
    color: rgb(255, 255, 255);
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
    color: rgb(250, 213, 1);
}


/* Your existing main style */
main { 
    padding: 10px;
    background: rgb(12, 1, 59);
    color: rgb(255, 255, 255);
    margin: 10px auto;
    margin-top: 1px;
    height: 100px;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(11, 211, 28, 0.938);
}


footer {
    background-color: #390a8f;
    color: rgb(11, 216, 137);
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
