html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #FBFAFA;
    width: 100vw;
}

main {
    height: auto;
}


.wrapper-container{
    max-width: 1200px;
    height: 100vh;
    width: 80%;
    margin: 0 auto;
    padding: 0 30px;
}

span {
        font-weight: bolder;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    letter-spacing: 5px;font-size: 30px;
    color: #fff;
    background-image: url(./avis_assets/bg-avis.webp);
    background-position: center;
    background-size: cover;
    min-height: 400px;
    margin-bottom: 60px;
}

a {
    font-size: 20px;
    margin: 30px;
    padding: 10px 30px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
}

a:hover {
    background: #fff;
    color: #000;
}

h1 {
    font-size: 50px;
    font-weight: bold;
}

.avis {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.avis li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #000;
    margin: 20px 30px;
    padding: 20px;
    border-radius: 20px;
    max-width: 600px;
    min-height: 200px; /* Ajustez la hauteur minimale pour permettre l'affichage complet des avis */
    overflow-y: auto; /* Ajoutez un défilement vertical si nécessaire */
}

.avis h2 {
    font-size: 30px;
    letter-spacing: 5px;
    margin: 0 30px;
}

.avis img {
    height: 40px;
}

h5 {
    font-size: 18px;
}

.avis p {
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.5; /* Augmentez l'espacement entre les lignes pour une meilleure lisibilité */
}

.user {
    display: flex;
    align-items: center;
    gap: 10px;
}
