*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}
body{
    height: 100vh;
}
.chat-container{
    width: 100%;
    height: 80%;
    background-color: rgb(76, 76, 76);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 20px;
    overflow: auto; /* it help use to scroll the page*/
}
.user-chat-box{
    width: 60%;
    position: relative;
    left: 40%;
}
.ai-chat-box{
    width: 60%;
    position: relative;
}
.user-chat-area{
    width: 90%;
    padding: 20px;
    background-color: black;
    color: rgba(255, 255, 255, 0.637);
    border-radius: 40px 0px 40px 40px;  /*left-bottom , right-top , right-bottom , left-top*/
    box-shadow: 2px 2px 10px black;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}
.choosingimg{
    width: 30%;
    border-radius: 50px;
}
.ai-chat-area{
    width: 90%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.422);
    position: relative;
    left: 10%;
    color: rgba(255, 255, 255, 0.637);
    border-radius: 0px 40px 40px 40px;  /*left-top , right-top , right-bottom , left-bottom*/
    box-shadow: 2px 2px 10px black ;

}
#user-image{
    position: absolute;
    right: 0;
    filter: drop-shadow(2px 2px 10px black);
}
#ai-image{
    position: absolute;
    left: 0;
    filter: drop-shadow(2px 2px 10px black);
}
.prompt-area{
    width: 100%;
    height: 20%;
    background-color: rgb(76, 76, 76);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.prompt-area input{
    width: 50%;
    height: 70px;
    background-color: black;
    outline: none;
    border: none;
    border-radius: 50px;
    padding: 20px;
    font-size: 20px;
    color: white;
    box-shadow: 2px 2px 10px black ;
}
.prompt-area button{
    width: 50px;
    height: 50px;
    background-color: black;
    border-radius: 50%;
    border: none;
    box-shadow: 2px 2px 10px black ;
    cursor: pointer;
    transition:all 0.5s ;
}
.prompt-area button:hover{
    background-color: rgba(0, 0, 0, 0.338);
}
.load{
    filter: drop-shadow(2px 2px 10px black);
}
.choose{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
#image{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:600px) {
    .user-chat-box{
        width: 80%;
        left: 20%;
    }
    .ai-chat-box{
        width: 80%;
        left: 20%;
    }
}