body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header, footer {
    background-color: #20232a;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: #61dafb;
    text-decoration: none;
}

#profileImage {
    width: 10%; /* ou une largeur fixe comme 300px */
    height: auto; /* garde le ratio de l'image */
    display: block; /* pour enlever tout espace sous l'image */
    margin: 0 auto; /* pour centrer l'image si nécessaire */
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
}

.grid-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
}

footer {
    margin-top: 20px;
}
