/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f4; /* Lighter background for a modern look */
}

/* Header */
.header {
    background-image: url('/assets/header.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 10px;
    text-align: center;
    color: rgb(0, 0, 0);
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6); /* Text shadow for better contrast */
}

/* Project Details */
.project-details {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.project-details img {
    max-width: 100%;
    height: auto;
    display: block; /* Makes the img a block element */
    margin: 0 auto; /* Centers the block element horizontally */
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
}


/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px; /* Adds space before the footer */
}