/* Smooth transition */
html{
    scroll-behavior: smooth;
}

/* Section About ME */
#aboutMe__container-button{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.aboutMe_button{
    width: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    border-radius: 5px;
    padding: 0.5rem;
    color: black;
    font-size: 2rem;
}
.aboutMe__img{
    width: 80%;
}


/* Section skills */
/* Array skills */
.tool-box{
    align-items: center;
    background: #0c8c34;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 0.5rem;
    align-content: space-evenly;
}

/* Grid's array */
.tool-container{
    background: black;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
    justify-content: space-evenly;
    border-radius: 0.5rem;
    flex-basis:auto;
    flex-grow:2;
    width:45%
}

/* Section Project */
.container_project{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10rem;
}
.container_project-reverse{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 10rem;
}

.projects__content{
    display: flex;
    flex-direction: column;
    width: 80%;
    
}
.button_project{
    margin-top: 1.5rem;
    width: 5rem;
    padding: 1rem 5rem;
    font-size: large;
}
.image{
    
    width: 80%; /* Homogénéité pour écran ordi */
    margin-right: 2rem; /* Homogénéité pour écran ordi */
}


/* Page 404 */
.section-404{
    height: 100vh;
}


@media screen and (max-width: 900px)  {
    .container_project{
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .container_project-reverse{
        flex-direction: column;
        margin-bottom: 2rem;
    }
    .title {
        margin: auto;
        margin-top: 2rem;
    }
    .button_project{
        margin: 1.5rem auto;
    }
    .project__image{
        margin-left: 1rem;
    }
    .container_skill{
        justify-content: center;
    }
    .image{
        width: 80%;
    }    
}

