/* Style général */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Section à propos */
#about {
    padding:34px;
    text-align: center;
    background-color: #f7f7f7;
}

#about p {
    font-size: 1.1rem;
}

#about .btn {
    padding: 10px 20px;
    background-color: rgba(76, 175, 80, 0.9);
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Projets */
#projects {
    padding: 60px;
    text-align: center;
}

#projects .btn {
    padding: 10px 20px;
    background-color: rgba(76, 175, 80, 0.9);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
    top: 20px; 
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project-card {
    background-color: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 300px;
}

.project-card img {
    width: 100%;
    border-radius: 10px;
}

/* Stats */
#stats {
    padding: 60px;
    background-color: #f7f7f7;
    text-align: center;
}

.stat {
    display: inline-block;
    margin: 0 20px;
    font-size: 1.5rem;
}

/* Pied de page */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer .social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
