 
@import url('https://fonts.googleapis.com/css2?family=GFS+Neohellenic:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Truculenta:opsz,wght@12..72,100..900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: 'poppins',sans-serif;
    scroll-behavior: smooth;

    /* font-family: "GFS Neohellenic", sans-serif;
    font-family: "Roboto Mono", monospace;
    font-family: "Poppins", sans-serif;
   font-family: "Truculenta", sans-serif;*/
}
h1,h4{
    /*font-family: "GFS Neohellenic", sans-serif;
    font-family: "Roboto Mono", monospace;*/
    
   font-family: "Truculenta", sans-serif; 
}


.forumaire-reponce{
    z-index: 45;
    background-color: rgba(41, 53, 107, 0.925);
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    display: flex;
    justify-content: center;
   
    align-items: center;
    color: rgba(245, 222, 179, 0.644);
     
    transition: 400ms ease-in-out;
   
}
.forumaire-reponce form a{
    color: rgba(245, 222, 179, 0.644);
}

form{ border: 1px solid rgba(245, 222, 179, 0.342);;
    display: flex;
    height: 700px;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-color: rgb(41, 53, 107);
    width: 40vw;
    border-radius: 20px;
}
.forumaire-reponce form .titre{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60%;
}
.forumaire-reponce form .titre h1{
    text-align: center;
}
.forumaire-reponce form .titre p{
    text-align: center;
}
.forumaire-reponce form .nom{
    background-color: rgb(56, 68, 121);
    display: flex;justify-content: center;
    align-items: center;
    height: 50px;
    width: 30vw;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.171);
}
.forumaire-reponce form  .nom input{
    width: 90%;
    height: 90%;
    outline: none;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.63);
     
}
.forumaire-reponce form .valider input{
    background-color: rgb(56, 68, 121);
    border: none;
    cursor: pointer;

}
.nom-text textarea{
    background-color: rgb(56, 68, 121);
    width: 30vw;
    border-radius: 10px;
    border:none;
    outline: none;
    font-size: 1.6vh;
    padding: 10px;
    color: rgba(255, 255, 255, 0.63);
}
.forumaire-reponce  form i{
    font-size: 2.3vw;
    cursor: pointer;
    transition: 400ms ease-in-out;
}
.forumaire-reponce  form i:hover{
    color: white;
}
.traitement{
    transform: translateY(000px);
}

@media screen and (max-width: 1000px) {
    form{ 
        width: 100%;
        height: 100%;
        
    }
    form .nom{ 
        width: 100%;
        height: 100%;
        
    }
    .forumaire-reponce form .nom {
    
        width: 85vw;
 
    }
    .forumaire-reponce form .nom-text textarea{
    
        width: 85vw;
 
    }
    .forumaire-reponce form .titre{
 
        width: 80%;
    }
}
 