html {
    background-color: #310055;
    word-wrap: break-word;
    margin: auto;
}

body {
    /* background-color: #D4DCE2; */
    /* background: linear-gradient(to bottom right, #005583, #ffffff);*/
    display: flex;
    flex-direction: column;
    align-items: center;
}

section {
    border-bottom: solid #D283FF 2px;
    width: 90%;
    padding-top: 3.5em;
    padding-bottom: 3.5em;
}

.presentation {
    margin-top: 7%;
    width: 80%;
    height: 100%;
    text-align: center;
    font-size: 3.5em;
    color: white;
}




#pourquoiOutils {
    height: 450px;
    width: 80%;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    align-items: center;
    padding-bottom: 250px;
}

#pourquoiOutils div {
    text-align: center;
}

#pourquoiOutils div h2 {
    font-size: 3em;
    color: white;
}

#pourquoiOutils div span {
    font-size: 1.5em;
    color: white;
}

#pourquoiOutils .outil {
    padding-top: 50px;
}

#pourquoiOutils .outil ul {
    width: 100%;
    padding-top: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

#pourquoiOutils .outil ul li {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#pourquoiOutils .outil ul li img {
    width: 200px;
    border-radius: 30px;
}




select {
    width: 125px;
    height: 20px;
    border: 2px solid black;
    border-radius: 30px;
    right: 0;
    position: static;
}





/*Pour les articles*/
#lesArticles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0px 5px 0px 5px;
    align-items: center;
    padding: 10px;
}

#lesArticles .formeArticle {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 40%;
    margin-bottom: 50px;
    padding: 10px;
    /* border-bottom: solid;
    border-right: solid; */
    border-radius: 30px;
    box-shadow: 5px 5px 10px 0px #D283FF;
}

#lesArticles div .partieGauche {
    width: 35%;
    border-radius: 30px;
}

#lesArticles div .partieDroite {
    width: 60%;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

    color: white;
}

#lesArticles div .partieDroite .avisLien {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#lesArticles div .partieDroite .avisLien img {
    max-width: 20px;
}

#lesArticles div .partieDroite .avisLien .demi {
    max-width: 10px;
}

#lesArticles div .partieDroite .avisLien .VersSiteArt {
    display: inline-block;
    padding: 10px 20px;
    background-color: #D283FF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#lesArticles div .partieDroite .avisLien .VersSiteArt:hover {
    background-color: #ff0000;
}

@media screen and (max-width: 768px) {
    #lesArticles div .partieGauche {
        display: none;
    }
}