*{
    --colormain:#342a37;
    --colordark:#2c1c31;
    --colorlight:#9c83a3;
    --colorwhite:#fff;
    --colortthird:#ff8f27;
    --lightmain :#2a1a2f;
    padding: 0;
    margin: 0;
    outline: none;
    text-decoration: none;
    list-style: none;
    color: inherit;
    font-family: "Poppins";
    box-sizing: border-box;
    border: none;
}
body {
    position: relative;
    background-color: #332238;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://igdream.ma/wp-content/themes/Theme/assets/img/background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    filter: blur(2px);
    z-index: -1;
}
.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    margin: 100px auto;
}
.container h1:nth-child(1){
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}
.image-article{
    width: 80%;
}
.image-article img{
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
}
.grp-share{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 50px auto;
}
.btn-share{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    padding: 5px 15px;
    background-color: #501A91;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.btn-share:hover{
    background-color: #7437be;
}
.content-artilce{
    width: 80%;
}
.commentaires-artilce,.last-commentaires{
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 150px;
    width: 100%;
}
.item-commentaire{
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}
.avatar-user,.image-user-box{
    height: 80px;
}
.avatar-user img , .image-user-box img{
    object-fit: cover;
    height: 100%;
    width:auto;
    border-radius: 50%;
}
.info-user{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.name-user{
    text-transform: capitalize;
}
.commentaire-avatr{

}

.box-commentaire{
    display: flex;    
    gap: 30px;
    width: 100%;
    border-top: 1px solid #7437be;
    padding-top: 30px;
}
.box-send-commentaire{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    max-width: 100%;
    width: 100%;
}
#commentairemsg{
    resize: none;
    max-width: 100%;
    padding: 10px;
    border-radius: 10px;
    color:#000;
}
.box-send-commentaire input{
    font-size: 18px;
    padding: 5px 20px;
    background-color: #7437be;
    border-radius: 5px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    width: max-content;
}
.box-send-commentaire input:hover{
    background-color: #935ed4;
}
.commentaires-article{
    width: 100%;
}
.content-article{
    color:#fff;
}
@media (max-width:1400px) {
    .container{
        margin: 50px 10px;
    }
}
@media (max-width:700px) {
    .grp-share{
        justify-content: center;
    }
    .image-user-box{
        display: none;
    }
    .box-send-commentaire{
        width: 100%;
    }
    .box-send-commentaire input{
        width: 100%;
    }
    #commntairemsg{
        width: 100%;
    }
}