body {
    background-color: rgb(55 65 81);
}

/* Style pour l'image pleine page */
.hero {
    height: 90vh;
    background-image: url('../img/backgroundImage/img.gif');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
    position: relative;
}

.hero-content {
    background-color: rgba(0, 0, 0, 1);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid rgb(55, 65, 81);
    opacity: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.scroll-btn {
    padding: 1rem 2rem;
    background-color: #1f2937;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.scroll-btn:hover {
    background-color: #374151;
}

/*partie des projets*/

#projects-section {
    padding: 2rem;
}

#projects-section h2{
    color: #fdf2f8;
    font-size: 2.2rem;
}

.listing_projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.project {
    padding: 2rem;
}

/*partie des skills*/

.skills-section{
    padding: 2rem;
}

.skills-section h2{
    color: #fdf2f8;
    font-size: 2.2rem;
}