body {
    font-family: "Titillium Web", sans-serif;
    background-color: #333; /* Dark background for the body */
    color: #f4f4f4; /* Light text color for better readability */
    margin: 0;
    padding: 0;
}

header {
    background-color: #222; /* Darker background for the header */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #f4f4f4; /* Light text color for better readability */
    font-weight: bold;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #444; /* Slightly lighter dark shade for dropdown */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #f4f4f4; /* Light text color for better readability */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #555; /* Lighter dark shade for hover */
}

.dropdown:hover .dropdown-content {
    display: block;
}

main {
    padding: 0px;
    text-align: center;
}

.projects-preview a {
    margin: 10px;
    display: inline-block;
}

.projects-preview img {
    width: 20vw; /* Adjust size as needed */
    height: auto;
    border: 1px solid #ccc;
    padding: 5px;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #222; /* Darker background for the footer */
    position: fixed;
    width: 100%;
    bottom: 0;
}

.header-image-mk1 {
    background-image: url('/images/mk1.jpg'); /* Ensure the path is correct */
    height: 100vh; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Makes the background image static */
    background-color: black; /* Fallback color */
}

.header-image-exo {
    width: 100%;
    height: 0;
    padding-bottom: 35%; /* Aspect ratio (height / width) * 100 */
    background-image: url('/images/BannerArt_EXO.jpeg');
    background-size: contain;
    background-position: top;
    background-attachment: fixed;
    background-color: black;
    background-repeat: no-repeat;
}

.content {
    padding: 20px;
    overflow-y: auto; /* Ensures content is scrollable */
    height: auto; /* Adjust height as needed */
    margin-top: 0; /* Adjust based on your layout needs */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    color: #f4f4f4; /* Light text color for better readability */

}