/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

h1, h2 {
    margin: 0;
    padding: 0.5em 0;
}

/* Header */
header {
    background-color: #109664;
    color: #fff;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
}

header h1 {
    font-size: 2em;
}

nav {
    display: flex;
    gap: 1em;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    padding: 0.5em 1em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #666;
}

/* Project Section */
.projet {
    padding: 2em;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 2em auto;
    width: 80%;
}

.projet h1 {
    text-align: center;
    margin-bottom: 1em;
}

.projet h2 {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.presProj p {
    line-height: 1.6;
    margin-bottom: 1em;
}

/* Project Links */
.projectLink {
    display: block;
    text-align: center;
    margin: 1em 0;
    text-decoration: none;
    color: #007BFF;
    font-size: 1.2em;
    transition: color 0.3s;
}

.projectLink:hover {
    color: #0056b3;
}

/* Competences Section */
.competences ul {
    list-style-type: none;
    padding: 0;
}

.competences li {
    margin-bottom: 1em;
    line-height: 1.6;
}

/* Images Section */
.imgProj {
    margin-top: 2em;
}

.imgProj div {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: space-evenly;
}

.imgProj img {
    max-width: 100%;
    max-height: 35vh;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .projet {
        width: 90%;
    }

    .imgProj div {
        flex-direction: column;
        align-items: center;
    }
}