@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
}

#temoin {
    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%;
}

.temoin {
    display: inline-block;
    text-align: center;
}

.temoin .le-monde {
    width: 300px;
    height: 300px;
    margin: 3%;
    padding: 2%;
    display: inline-block;
    box-shadow: #000000 0px 0px 0.8px;
    transition: 0.5s ease;
}

.temoin .le-monde:hover {
    width: 303px;
    height: 303px;
    margin: 3%;
    padding: 2%;
    display: inline-block;
    box-shadow: #000000 0px 0px 10px;
}

.temoin .le-monde img {
    width: 60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10%;
}

footer{
    background-color: green;
    color: #ffffff;
}