@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
}

#dd {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.container {
    max-width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0px 10px -50px -10px #d6d6d6;
}

.titre {
    text-align: center;
    margin-top: 3%;
    margin-bottom: 3%;
}

.titre h2 {
    font-size: 35px;
}

.titre #trait {
    width: 250px;
    height: 1px;
    background-color: rgb(0, 181, 0);
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2%;
}

.texte{
    display: block;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 5%;
}

