/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

/* Navigation Bar */
nav {
    background-color: #333;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Header */
header {
    text-align: center;
    padding: 20px;
}

/* Project Sections */
.project {
    background: white;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
}

/* Images */
.project-img {
    width: 70%;
    height: auto;
    border-radius: 10px;
}

/* Video */
.project-video {
    width: 70%;
    height: 400px;
    border-radius: 10px;
}

/* Links */
.project a {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .project-img,
    .project-video {
        width: 100%;
        height: auto;
    }
}
