/* Reset some default styles */
body, h1, p, ul {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

/* Background styling */
body {
    background: url('images/annona.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
}

/* Header with university logos */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
}

.logo-container img {
    width: 150px; /* Adjust size as needed */
    margin: 0 15px;
}

/* Navigation bar */
nav {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #f5a623;
}

/* Main content */
main {
    max-width: 800px;
    margin: 50px auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

/* List styling */
ul {
    text-align: left;
    margin: 20px auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    width: fit-content;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container img {
        width: 100px;
    }
    nav ul {
        flex-direction: column;
    }
    main {
        width: 90%;
    }
}
/* Footer Styling */
footer {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}

footer a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: #fff;
}
<footer>
    <p>&copy; 2025 Population Well-being Project. All rights reserved.</p>
    <p>Contact us at <a href="mailto:matthijs.zoeter@ugent.be">matthijs.zoeter@ugent.be</a></p>
</footer>
