
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #f6efef;
}

header {
    background-color: #070707;
    color: #d4d0d0;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #444;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 10px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ffd700;
}

section.project-details {
    background-color: #000;
    padding: 30px;
    max-width: 1500px;
    margin: 0 auto;
}

.project-description {
    margin-bottom: 40px;
}

h1, h2 {
    margin-bottom: 20px;
    color: #fbfafa;
}

h2 {
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

p {
    margin-bottom: 20px;
    color: #f6f0f0;
}

ul {
    list-style-type: square;
    margin: 20px 0;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
    color: #ddd;
}

.project-images {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.project-image {
    width: 48%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-top: 2px solid #444;
}

footer a {
    color: #FFD700;
}

footer a:hover {
    color: #ff9900;
}
