#displayBtnDifferentSoins{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.btnSoins{
    cursor: pointer;
    background: none;
    padding: 10px;
    margin: 20px;
    color: var(--color-rose);
    border: 2px solid var(--color-rose);
    font-size: x-large;
    text-align: center;
    transition: 0.5s;
}
.btnSoins:hover{
    border: 2px solid var(--color-vert);
    color: var(--color-vert);
}
#grosTitrePratique{
    font-size: xx-large;
    color: var(--color-rose);
    text-align: center;
}
.titreDeLaPratique{
    font-size: xx-large;
    text-decoration: underline;
    text-align: center;

}
@media (max-height: 450px), screen and (orientation: portrait){ 
    #displayBtnDifferentSoins{
        flex-direction: column;
    }
    .btnSoins{
        width: 90%;
        font-size: large;
        margin: 5px 0;
    } 
 }
